Archives: Snippets
https://zuhuralkhshab.store/
https://zuhuralkhshab.store/
Untitled Snippet
Untitled Snippet
MST Case Container Initiate Case
PageTemplate_Universal – GRAVITY FLOW EMBED TEMPLATE
/** * ============================================================================ * GRAVITY FLOW EMBED TEMPLATE – Universal WPCode Snippet (SAFE VERSION) * ============================================================================ * * Version: 1.1.0 * Author: Portal Blueprint * Compatible with: Gravity Flow 2.8+, BuddyBoss, Divi, Elementor, Any Theme * * SAFETY FEATURES: *…Continue reading
How to Change CSV Export Delimiter
/** * Filters the delimiter used in CSV exports of form entries. * * @link https://wpforms.com/developers/change-csv-export-delimiter/ */ function wpf_dev_pro_admin_entries_export_configuration( $configuration ) { $configuration[ ‘csv_export_separator’ ] = ‘;’; return $configuration; } add_filter( ‘wpforms_pro_admin_entries_export_configuration’, ‘wpf_dev_pro_admin_entries_export_configuration’, 10, 1 );Continue reading
Hide Empty Categories for PP Grid Filter
add_filter( ‘pp_cg_filters_show_available_posts_terms’, ‘__return_true’ );Continue reading
Paystack Split Payments Integration with WC Vendors — Calculating Vendor Splits
if ( wc_string_to_bool( get_option( ‘wcvendors_vendor_give_taxes’ ) ) ) { // Add tax fees to vendor total } else { // Add tax total to marketplace split } if ( wc_string_to_bool( get_option( ‘wcvendors_vendor_give_shipping’ ) ) { // Add shipping fees to…Continue reading