Skip to content
Zobrazeny 2 výsledky
jQuery(document).ready(function($){
let observer = new MutationObserver(function(){
$('body').trigger('wc_fragment_refresh');
});
$('.woocommerce-Price-amount').each(function(){
observer.observe(this, {
childList: true,
subtree: true,
characterData: true
});
});
});