Location: frontend_only
Fix ACF content not displaying in the filter result – Content Grid
add_filter( ‘pp_cg_beaver_themer_parse_shortcodes’, ‘__return_false’ );Continue reading
Jetpack Instant Search Wholesale Visibility (copy)
/** * Main plugin class. * * Security / Maintainability / Accessibility notes: * – No user-supplied input is processed; configuration is fixed server-side. * – We scope changes to Jetpack Instant Search via its documented filter, so normal queries,…Continue reading
Jetpack Instant Search Wholesale Visibility
/** * Main plugin class. * * Security / Maintainability / Accessibility notes: * – No user-supplied input is processed; configuration is fixed server-side. * – We scope changes to Jetpack Instant Search via its documented filter, so normal queries,…Continue reading
Pull Parameters from RD Session Cookie for Persistent GET Request Values
add_action(‘init’, function () { if (is_admin()) { return; } if (empty($_COOKIE[‘rd_session_params’])) { return; } $raw = wp_unslash($_COOKIE[‘rd_session_params’]); $data = json_decode($raw, true); if (!is_array($data)) { return; } foreach ($data as $k => $v) { if (!is_string($k) || $k === ”) {…Continue reading
Mobile Dock HTML and JS (by Andrei)
add_action(‘wp_footer’, ‘add_custom_mobile_dock’); function add_custom_mobile_dock() { if (is_cart() || is_checkout()) { return; // Don’t show dock on cart or checkout pages } ?> Начало Меню Търсене ПомощContinue reading
FontAwesome
Load FontAwesome
Exam Date Button & Appointment Sync
add_action(‘wp_footer’, function () { ?>Continue reading
Show Wholesale Prices Text In Single Product Page For Wholesale Role Customers
/** * First Remove The Existing Pricing Filter So That It Will Be Available To All Users */ add_action(‘init’, ‘remove_existing_pricing_html’, 10); function remove_existing_pricing_html() { global $wc_wholesale_prices; remove_filter(‘woocommerce_get_price_html’, [$wc_wholesale_prices->wwp_for_non_wholesale_customer,’add_click_wholesale_price_for_non_wholesale_customers’], 10 ); } /** * Include Pricing HTML for all users */…Continue reading