Current path: home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/customizer/sync/woocommerce/loop/
?? Go up: /home/webdevt/www/demo2/wp-content/themes/blocksy/static/js/customizer/sync/woocommerce
import { watchOptionsWithPrefix } from '../../helpers'
import { replaceCards } from '../archive-product'
watchOptionsWithPrefix({
getOptionsForPrefix: () => ['shop_structure', 'shop_columns'],
render: () => {
;[...document.querySelectorAll('.shop-entries')].map((el) => {
const structure = wp.customize('shop_structure')()
el.dataset.layout = structure
})
replaceCards()
},
})