if(!$('input[name^="payment_method"]').first().is(':checked') || $('#paso-3-content').is(':hidden')) { $('#customfees').hide(); } $('.btn_pasos.btn_paso_siguiente').click(function() { setTimeout(function() { if(!$('#paso-3-content').is(':hidden')) $('input[name^="payment_method"]').first().is(':checked') ? $('#customfees').show(): $('#customfees').hide(); },500); }); jQuery( function($){ $('form.checkout').on('change', 'input[name^="payment_method"]', function() { $(this).val() != 'bacs' ? $('#customfees').hide() : $('#customfees').show(); $('body').trigger('update_cart'); }); });