?? GreyFile — Mystic File Browser

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

?? Viewing: loop-start.js

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()
	},
})


??

??