davi.lotus
Forum Replies Created
-
Forum: Plugins
In reply to: [Site Reviews] How to dequeue style and css from some pagesHello!
The plugin loads css on pages where there are no ratings, I need to remove this to reduce the number of requests per page.
Thanks for your attention, but I already managed to solve with the filters below
wp_dequeue_script (‘yith-wcwtl-frontend’);
wp_dequeue_style (‘yith-wcwtl-style’);Forum: Plugins
In reply to: [Claudio Sanches - Correios for WooCommerce] PAC Grátis e Sedex FixoE ai @webster_r, tudo certo?
Tenta isso:
add_filter( ‘woocommerce_correios_correios-sedex_rate’, ‘sedex_taxafixa’, 10, 3 );
function sedex_taxafixa( $rate, $instance_id) {if ( isset( WC()->cart->subtotal ) && 100 <= WC()->cart->subtotal ) {
$rate[‘cost’] = 10;
return $rate;}
return $rate;
}
Forum: Plugins
In reply to: [Brazilian Market on WooCommerce] Problemas com CPF e EstadoEstou tendo um problema parecido.
O estado é salvo no perfil do usuário, mas em novas compras ele não é resgatado como os outros dados.
Estou fazendo alguns testes, mas se alguém souber de algo que resolva eu agradeço!Forum: Plugins
In reply to: [Claudio Sanches - PagSeguro for WooCommerce] Limitar quantidade de parcelasValeu Erick, vou dar uma olhada aqui 😉
Forum: Plugins
In reply to: [Postman SMTP Mailer/Email Log] Error: invalid_scopeThanks @randybiehl. Worked perfectly!
Forum: Fixing WordPress
In reply to: "SMTP connect() failed."The plugin you recommended worked.