“Tirante ondas off-white e preto – Sem Mínimo (TPSE-106)” foi adicionado ao seu carrinho.
Continuar comprando
Total no carrinho
Subtotal | R$19,90 |
---|
Entrega | |
---|
Total | R$19,90 |
---|
add_action('wp_enqueue_scripts', 'js_fix_checkout_dropdown');
function js_fix_checkout_dropdown() {
if ( ! is_checkout() ) return;
wp_add_inline_script( 'jquery', "
(function($){
$(function(){
$('select#billing_state, select#shipping_state, select#billing_persontype').each(function(){
var \$sel = $(this);
if ( \$sel.hasClass('select2-hidden-accessible') ) {
\$sel.selectWoo('destroy');
}
\$sel.selectWoo({
dropdownParent: \$sel.closest('.form-row'),
width: 'resolve'
});
});
});
})(jQuery);
" );
}