jQuery(document).ready(function($) {
// Якщо є селект розміру
$('form.variations_form select').each(function() {
if (!$(this).val()) {
$(this).find('option').eq(1).prop('selected', true).change();
}
});
// Якщо використовуються swatches (кнопки)
$('.ux-swatch__value').each(function() {
if (!$(this).hasClass('selected')) {
$(this).closest('.ux-swatch').find('.ux-swatch__value').first().trigger('click');
}
});
});
Відгуки
Відгуків немає, поки що.