/** * ACF-productlabel tonen. */ function ld_product_label() { if (!function_exists(‘get_field’)) { return; } global $product; if (!$product instanceof WC_Product) { return; } $label_text = get_field(‘label_tekst’, $product->get_id()); $kleur = get_field(‘achtergrondkleur’, $product->get_id()); if (!$label_text) { return; } if (!$kleur) { $kleur =…Continue reading
/* ========================================================= Vakantie-popup met instellingenpagina — WPCode PHP snippet – Menu-item “Vakantie popup” in het WordPress-menu – Sitenaam wordt automatisch uit de websitetitel gehaald – Start- en einddatum, teksten en icoon instelbaar – Testknop toont de popup direct in het…Continue reading
global $wc_wholesale_prices_premium; remove_filter( ‘option_woocommerce_tax_display_shop’, array( $wc_wholesale_prices_premium->wwpp_tax, ‘wholesale_tax_display_shop’ ) ); remove_filter( ‘option_woocommerce_tax_display_cart’, array( $wc_wholesale_prices_premium->wwpp_tax, ‘wholesale_tax_display_cart’ ) );Continue reading
add_post_type_support( ‘page’, ‘excerpt’ );Continue reading
add_action(‘template_redirect’, function() { if (!empty($_GET[‘mc_id’]) || is_singular(‘mc-events’)) { header(‘Location: ‘ . home_url(‘/upcomingevents/’), true, 301); exit; } }); add_action(‘init’, function() { global $wp_post_types; if (isset($wp_post_types[‘mc-events’])) { $wp_post_types[‘mc-events’]->public = false; $wp_post_types[‘mc-events’]->publicly_queryable = false; $wp_post_types[‘mc-events’]->exclude_from_search = true; } }, 99);Continue reading
/** * ============================================================================ * UG Checkout – Bundle Display V1.6 * ============================================================================ * * V1.6 CHANGES (2026-07-04, F12-verified before inclusion): * – STANDARD (non-bundle) products now get the same treatment as the * bundle parent: native qty stepper hidden, compact…Continue reading
/** * ============================================================================ * UG VAT Totals V1.22 – Totals display: checkout, order pages & emails * ============================================================================ * * REPLACES: UG VAT Totals V1.17. * * V1.22 CHANGES (2026-07-06): shipping label private/company decision now * prefers the posted ug_customer_type…Continue reading
/** * ============================================================================ * UG Checkout – Customer Type & VAT V2.5 (consolidated) * ============================================================================ * * REPLACES (keep the old ones DEACTIVATED as rollback until go-live cleanup): * – 40746 UG Checkout – Privat/Firma Toggle V1.1 (UI ONLY –…Continue reading