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 | |
add_filter( 'shoptimizer_typography2_enabled', '__return_true' ); |
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
gtm4wp-form-move-tracker.js | |
wishlist.js | |
ajax-search.js | |
wp-polyfill.min.js | |
swiper.min.js | |
frontend.js | |
add-to-cart.min.js | |
elementor/frontend.min.js | |
share-link.min.js | |
gtm.js |
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( $ ) { | |
'use strict'; | |
// Add close drawer markup | |
$( '.post-type-archive-product #secondary' ).prepend( '<div class="close-drawer"></div>' ); | |
// Add custom id to the single product form | |
$( document ).ready( function() { | |
$( '.single-product form.cart' ).attr( 'id', 'sticky-scroll' ); |
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_action( 'init', 'remove_shoptimizer_primary_navigation' ); | |
/** | |
* Remove the primary navigation markup in Shoptimizer. | |
* | |
* @since 1.0.0 | |
* | |
* @return void | |
*/ | |
function remove_shoptimizer_primary_navigation() { | |
remove_action( 'shoptimizer_navigation', 'shoptimizer_primary_navigation_wrapper', 42 ); |