Hide Calendar Event Pages From Being Indexed

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

CSS Class for matching religion to a color – Copy

$rlgn = get_field(‘Rlgn’); // Get the ACF field value if (!$rlgn) return; // Define the color mapping $colors = [ ‘Ethnoreligion’ => ‘#590cc6’, ‘Buddhism’ => ‘#c61836’, ‘Hinduism’ => ‘#d87716’, ‘Judaism’ => ‘#ede71d’, ‘Islam’ => ‘#0b7034’, ‘Shinto’ => ‘#6d0c23’, ‘Sikh’ =>…Continue reading

UG Checkout – Bundle Display V1.6

/** * ============================================================================ * 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 – Order & email totals display (Phase A)

/** * ============================================================================ * 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)

/** * ============================================================================ * 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

** Activate ** UG – PHP Admin Order Fragtmand Flag

/** * ============================================================================ * UG – Admin Order Fragtmand Flag * ============================================================================ * * Visual indicators in WP admin to help order processors quickly identify * orders that contain a Fragtmand (oversized freight) product. These orders * must be handled…Continue reading