We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74ba9c7 commit ef80cd8Copy full SHA for ef80cd8
assets/js/src/custom.js
@@ -1813,16 +1813,16 @@ botiga.misc = {
1813
}
1814
},
1815
customizer: function() {
1816
- if( ! window.parent.document.body.classList.contains( 'wp-customizer' ) ) {
+ if ( typeof wp === 'undefined' || typeof wp.customize === 'undefined' ) {
1817
return false;
1818
1819
1820
- window.onload = function() {
+ wp.customize.bind( 'preview-ready', function() {
1821
var cart_count = document.querySelectorAll( '.cart-count' );
1822
if( cart_count.length ) {
1823
jQuery( document.body ).trigger( 'wc_fragment_refresh' );
1824
1825
- }
+ } );
1826
1827
1828
0 commit comments