This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php do_action('wvs_pro_variation_show_archive_variation'); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set_theme_mod( '404_block', false ); | |
set_theme_mod( 'site_loader', false ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( function($) { | |
$( '.woocommerce-page-title' ).unwrap(); | |
$( '.header-search-button' ).click( function() { | |
$( '.header-search' ).toggleClass( 'header-search-open' ); | |
$( '.navbar-collapse').removeClass( 'in' ).attr( 'aria-expanded', 'false' ).css( 'height', '1px' ); | |
$( '.navbar-toggle').attr( 'aria-expanded', 'false' ); | |
$( '.navbar-toggle').addClass( 'collapsed' ); | |
} ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function wvs_apply_only_product_page($default){ | |
return function_exists('is_product') && !is_product(); | |
} | |
add_filter('disable_wvs_enqueue_scripts', 'wvs_apply_only_product_page'); | |
add_filter('disable_wvs_pro_enqueue_scripts', 'wvs_apply_only_product_page'); | |
add_filter('disable_wvg_enqueue_scripts', 'wvs_apply_only_product_page'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function () { | |
jQuery('.shop-container .products').on('append.infiniteScroll', function (event, response, path) { | |
jQuery('.variations_form').each(function () { | |
jQuery(this).wc_variation_form(); | |
}) | |
}); | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'stop_gwp_live_feed', '__return_true' ); |