Files
2026-04-28 15:13:50 +02:00

19 lines
482 B
JavaScript

jQuery( function( $ ) {
console.log('easypack coupons');
if($('#discount_type').val() === 'easypack_inpost_discount') {
$('#easypack_list_configured_inpost_methods').show();
}
$('#discount_type').on('change', function () {
if($(this).val() === 'easypack_inpost_discount') {
$('#easypack_list_configured_inpost_methods').show();
} else {
$('#easypack_list_configured_inpost_methods').hide();
}
})
} );