mhb
Forum Replies Created
-
Forum: Plugins
In reply to: [Virtuaria PagBank / PagSeguro para Woocommerce] 40002 – Parametro inválidoObrigado pelo retorno. O email foi enviado.
Obrigado por responder ao meu questionamento, mas particularmente prefiro as classes de entrega, funcionalidade nativa do woocommerce
Forum: Plugins
In reply to: [Claudio Sanches - Correios for WooCommerce] Frete grátis com prazo PACAlguém usando o excelente plugin do Claudio Sanches – Correios for WooCommerce consegue configurar frete grátis para compras a partir de um valor mínimo? N?o estou falando da op??o frete grátis nativa do woocommerce, pois essa n?o proporciona uma estimativa de entrega. Penso que poder configurar uma op??o de frete tipo PAC ou SEDEX, tornando ela grátis para o cliente que comprar X valor mínimo, seria ótimo.
Forum: Plugins
In reply to: [OG — Better Share on Social Media] Make image Size configurableHello, I also have this problem on OG — Better Share on Social Media, as Yoast SEo does not properly handle opengraph. I installed OG and when I noticed this problem with the image size, I uninstalled it and stayed with Yoast. However, the problem did not go away. In facebook debug, the image appears in the correct size when sharing a link, but in instagram messenger it does not. How could I fix this?
Descobri a causa do “problema”. Bastou eu designar “qualquer classe de entrega” nas configura??es de cada método de envio.
Forum: Fixing WordPress
In reply to: Can’t set password for new usersI would like to report my experience with this issue. From the Health Check & Troubleshooting plugin, I put the system in troubleshooting mode and is that way I can work on adding new users or generating new passwords as usually. I tested each plugin installed one by one and none is the cause of the problem.
Forum: Themes and Templates
In reply to: Different header againAs a “not coder human” I’m really happy!
Finally I found the solution:
<?php
if (have_posts()&&!is_page(‘title_page1’)&&!is_page(‘title_page2’)&& //… and so on//{
include(TEMPLATEPATH.’/header2.php’);
}
else {
include(TEMPLATEPATH.’/headerdefault.php’);
}
?>
Thanks to https://blogcrafted.com/wordpress-php-conditional-tags/
I hope this can help somebody.