document.addEventListener('DOMContentLoaded', function() {
// Tìm tất cả các dropdown biến thể của WooCommerce
const variationsForm = document.querySelector('form.variations_form');
if (variationsForm) {
// Lắng nghe khi WooCommerce đã khởi tạo xong các biến thể
jQuery(variationsForm).on('wc_variation_form', function() {
const selects = variationsForm.querySelectorAll('.variations select');
selects.forEach(function(select) {
// Nếu chưa có biến thể nào được chọn (giá trị là trống)
if (select.value === '') {
// Chọn option thứ 2 (vì option 1 thường là "Choose an option")
if (select.options.length > 1) {
select.selectedIndex = 1;
// Kích hoạt sự kiện thay đổi để WooCommerce cập nhật giá/ảnh
select.dispatchEvent(new Event('change', { bubbles: true }));
}
}
});
});
}
});