/** * ============================================================ * GUARDEDPAY PRO — Phase 1 Removal (PERMANENT) * ============================================================ * * PURPOSE: Hides “I Already Have A Coverage Code” radio option * from GuardedPay widget on checkout. * Overrides red border on GuardedPay payment widget. *…Continue reading
/** * Bulk Image & PDF Optimizer + Bestandsgrootte sortering * Voeg toe aan functions.php of gebruik via Code Snippets plugin * * Menu-items onder Media: * Media → Bulk Optimizer (verwerking + status) * Media → Formaat instellingen (breedtes…Continue reading
PIPAS — Biennale de Photographie Genève PIPAS À propos Pratique 24 22 PIPAS Biennale de Photographie des écoles · Genève · Par et pour les élèves Prochaine édition — 27 mai au 14 juin 2026 · Ecoquartier Jonction · Plaine…Continue reading
/** * Restrict Checkout Referrals to a Specific User Role & Filter Affiliates by Role * * – Only displays the Checkout Referrals dropdown to logged-in users * with the ‘influencer_sales’ role. * – Filters the affiliate dropdown to only…Continue reading
/** * Second Affiliate Selection at WooCommerce Checkout (Checkout Block Compatible) * * Adds a second affiliate dropdown alongside the Checkout Referrals addon’s * first dropdown and creates a separate referral for the second affiliate. * * Requires: AffiliateWP +…Continue reading
add_action(‘init’, function () { if (!is_user_logged_in() || !current_user_can(‘manage_woocommerce’)) { return; } if (!isset($_GET[‘broken_variable_products’])) { return; } if (headers_sent()) { return; } $product_ids = get_posts([ ‘post_type’ => ‘product’, ‘posts_per_page’ => -1, ‘fields’ => ‘ids’, ‘tax_query’ => [ [ ‘taxonomy’ => ‘product_type’,…Continue reading
// Sitemap deaktivieren add_filter(‘wp_sitemaps_enabled’, ‘__return_false’); // Globale Auto-Updates deaktivieren if (!defined(‘AUTOMATIC_UPDATER_DISABLED’)) { define(‘AUTOMATIC_UPDATER_DISABLED’, true); } // XML-RPC deaktivieren add_filter(‘xmlrpc_enabled’, ‘__return_false’); // Generator Meta-Tag entfernen add_filter(‘the_generator’, ‘__return_empty_string’); // Core / Plugin / Theme Updates deaktivieren add_filter(‘auto_update_core’, ‘__return_false’); add_filter(‘auto_update_plugin’, ‘__return_false’); add_filter(‘auto_update_theme’, ‘__return_false’);…Continue reading