July 8, 2024
Imagine waking up without the usual stiffness in your knees or feeling the freedom of movement without the nagging pain in your joints. For many joint […]
/** * Fix Cross-Origin issues for BeTheme Visual Builder with WPML Multiple Domains */ add_action('admin_footer', 'mfn_fix_cross_origin_builder'); // For the builder interface add_action('wp_footer', 'mfn_fix_cross_origin_preview'); // For the preview iframe content function mfn_fix_cross_origin_builder() { // Only run on the Visual Builder page if ( ! isset($_GET['page']) || $_GET['page'] !== 'be-builder' && !isset($_GET['visual']) ) return; // Get the base domain (e.g., 'supernutrition') to allow sub-origin communication if applicable // Or more reliably, use postMessage for the specific domains. ?>