/**
* Register the Footer Menu Location
*/
add_action('after_setup_theme', 'ammarin_register_footer_menu');
function ammarin_register_footer_menu() {
register_nav_menus(array(
'ammarin_footer_menu' => 'Footer Quick Links Menu'
));
}
/**
* Shortcode: [custom_ammarin_footer]
* Max-Specificity version to bypass all Elementor/Theme overrides.
*/
add_shortcode('custom_ammarin_footer', 'custom_ammarin_footer_shortcode');
function custom_ammarin_footer_shortcode() {
ob_start();
?>
(function () {
var c = document.body.className;
c = c.replace(/woocommerce-no-js/, 'woocommerce-js');
document.body.className = c;
})();