lucasbustamante
Forum Replies Created
-
Thanks for the confirmation! ??
Opa,
Estou tentando resolver mas n?o tenho contrato com os Correios, daí n?o consigo gerar o Posting Card nem atualizar a lista de servi?os, e sem isso n?o consigo arrumar a compatibilidade com o plugin.
Se você quiser me passar as credenciais de acesso (pode ser por uma call do AnyDesk), e depois você invalida o token, daí eu consigo arrumar.
Att,
LucasYou’re correct.
- In my case, GD uses WebP from system
- And my libwebp version is 0.3.0, released in 2013. Latest version is 1.3.2.
~ rpm -qa | grep webp alt-libwebp-1.2.2-1.el7.x86_64 libwebp-0.3.0-11.el7.x86_64
I’ll probably download these 155k images to my computer and optimize it locally, then replace it.
Just as a sidenote, it would be awesome if the CLI command would take a path as a parameter, this way I could parallelize it. I’ve been processing it for the past 8 hours (on CLI) and it’s still 40%. I got blocked by the firewall trying to process it using the AJAX/UI approach.
Thanks for the awesome plugin!
- This reply was modified 1 year, 3 months ago by lucasbustamante.
While processing through the UI, I see that some items are skipped/fails, I wonder if this is more strict in CLI and is throwing an error instead?
eg:
Saving the weight of your images: 109.77 MB (51%) Successfully converted files: 731 Failed or skipped file conversion attempts: 39
Maybe if on CLI, it could have some kind of logic to bail only if it’s failing too much?
Forum: Plugins
In reply to: [Yoast SEO] Noindex, follow added to author page, where to remove?I’ve hacked a solution for my case by replacing
wp_head()
on header.php with this:<?php if ( is_author() ) { ob_start( function ( $output ) { return str_replace( 'noindex', 'index', $output ); } ); wp_head(); ob_end_flush(); } else { wp_head(); } ?>
- This reply was modified 1 year, 3 months ago by lucasbustamante.
Forum: Plugins
In reply to: [Yoast SEO] Noindex, follow added to author page, where to remove?+1 to this. I also have noindex on author, even though it was supposed to be indexed.
- This reply was modified 1 year, 3 months ago by lucasbustamante.
Howdy,
PHP comes with the zip extension. The zip extension uses libzip, a C library that follows the PKWARE ZIP specification, the de-facto standard for Zip files in the world. The Archive Utility in macOS is poorly written, and produces zip files that violates the specificiations.
Some Zip softwares are tolerant to this, and can parse it, others, such as libzip, can’t. Therefore, PHP can’t either.
I’ve just opened a bug report at libzip, and they added a workaround to tolerate this failure from the Archive Utility: https://github.com/nih-at/libzip/issues/341
So in the future versions of PHP (8.3+), this probably happen anymore.
As a workaround for this, WordPress Core uses PclZip as a fallback in wp-admin/includes/file.php.
> O endere?o está cadastrado corretamente, pois a calculadora padr?o da página do carrinho funciona normalmente.
Só um detalhe, é completamente diferente a calculadora do carrinho e a calculadora da página do produto.
O carrinho é uma página padronizada do WooCommerce, já a página do produto, cada tema faz a sua, e alguns temas podem n?o incluir todos os hooks necessários, como o hook onde meu plugin integra por padr?o para exibir a calculadora, por exemplo.
@cris123pp foi isso mesmo que o @jailsonjan disse.
Estou coletando sugest?es sobre como melhorar este comportamento neste tópico, por favor, fique à vontade para postar lá: https://www.ads-software.com/support/topic/nao-aparece-sem-que-variacao-seja-selecionado/
Oi @jailsonjan , já resolveu esse problema?
Oi @jailsonjan ,
Realmente, eu mantenho esse plugin como um projeto paralelo. Eu n?o recebo notifica??es via e-mail quando alguém posta aqui, ent?o eu passo aqui de vez em quando e vejo o que tem escrito, realmente às vezes demora.
Até onde eu sei, o plugin está funcionando normalmente, tirando alguns problemas para alguns usuários específicos, que geralmente s?o causados por conflitos com outros plugins ou temas.
@brunogobo O motivo dele ficar oculto até a varia??o ser escolhida, é que cada varia??o tem seu próprio peso e tamanho, e n?o tem como saber essa informa??o antes do usuário escolher uma…
Estou aberto a sugest?es para melhorar o comportamento do plugin nesse sentido. Tem alguma ideia sobre como exibir o cálculo de frete antes do usuário escolher a varia??o?
Obrigado @jailsonjan !
Você pode editar o título para “Leia se estiver usando WP Cerber Security”? Dessa forma irei marcar o post como fixo.
Howdy @briwordpressorg,
You can use the “Update” button to update your staging site with the contents of your live site:
There, you can select what tables/files to migrate from Live to Staging. For instance, to migrate only the users from live to staging:
Or you can always delete the staging site and create a new one.
Best,
Lucas (WPSTAGING Developer)A fun??o que exibe o HTML é esta daqui: https://github.com/Luc45/WooCommerce-Correios-Calculo-de-Frete-na-Pagina-do-Produto/blob/master/src/Frontend.php#L66
Sugiro abrir o código do plugin via FTP e debugar essa fun??o para ver se ela está sendo chamada. Se n?o estiver sendo chamada, o problema é no hook. Tente chamar
do_action('woocommerce_before_add_to_cart_button');
manualmente no seu tema para debugar.Se aquela fun??o estiver sendo chamada, mas ainda assim o HTML n?o aparece, daí tem que debugar o código ali pois tem algumas condicionantes que podem fazer n?o aparecer (como por exemplo Produto Virtual).
Se o HTML estiver sendo carregado completo ali, ent?o a calculadora pode estar dentro de alguma div escondida com CSS ou algo do tipo, daí tem que ver.