5% descuento en productos seleccionados Descartar
-
jQuery(function ($) {
// Toggle login
$('.woocommerce-info').each(function () {
if ($(this).next('.woocommerce-form-login, .checkout_coupon').length) {
$(this).on('click', function () {
$(this).next('.woocommerce-form-login, .checkout_coupon').slideToggle(150);
});
}
});
});