Filipe Seabra
Forum Replies Created
-
Hi @robert681
PHP version 7.4.26 (Supports 64bit values)
WP Version 5.8.2If you need more info please let me know.
Thanks.
Thank you for your response.
Actually, it is Docker. My sysuser on my OS is
filipecsweb
and it is not present within the container. It could be, but it is not.I added PHP null coalescing operator to solve it in my machine:
$g = posix_getgrgid( $u['gid'] ?? 0 ); $php_u = $u['name'] ?? '' . ':' . $g['name'] ?? '';
But that is only compatible with PHP 7+.
Anyway, I’d appreciate any action from your end.
Thanks.
Forum: Plugins
In reply to: [Yoast SEO] Custom Content Type Archives missingTake a look at https://github.com/Yoast/wordpress-seo/issues/10211.
You guys are not as concerned about this issue as you should be.
Please, consider that thousands of websites use your plugin and they are not in English.
Nice!
@msaari is there a way you can fix the report at https://wpvulndb.com/vulnerabilities/9059?
I’m getting emails from WP Manager and other platforms alerting me about this vulnerability, but as you said you fixed it in 4.0.5.
If you can’t change the version from 4.1 to 4.0.5, could you release version 4.1? I bet it’s being annoying to me and also other people.
Thanks.
Forum: Plugins
In reply to: [Contact Form 7] Minify CSS/JSThis topic is not yet resolved.
I’m currently using the latest version of the plugin (5.0.1) and the asset /wp-content/plugins/contact-form-7/includes/js/scripts.js is still not minified.
You should start making use of Gulp.js, for example, and make available 2 files: js/scripts.js and js/dist/scripts.min.js. Which file to be loaded, then, would be up to the administrator by defining a PHP constant.
Please, solve this! It’s so easy to achieve it and you’d be doing a big favor to us and your code.
Basta você acessar a pagina de login do WordPress e fazer login:
https://seudominio.com.br/wp-adminForum: Plugins
In reply to: [WooCommerce Parcelas] tamanho das fontesEste é o tema do qual vc fala?
https://impreza9.us-themes.com/Se sim, esse tema é compatível com o plugin WooCommerce Parcelas.
Acabei de testar todas as funcionalidades do plugin na seguinte instala??o:
https://impreza-afknp14.themetest.net/shop/Essa instala??o irá expirar em 5 horas, a partir de agora. Corre lá e veja no console se algo se difere da sua instala??o. às vezes algum plugin que vc utiliza pode estar causando algum conflito.
Forum: Plugins
In reply to: [WooCommerce Parcelas] PHP notice em produto com valor abaixo de R$ 5,00Atualize para a vers?o 1.2.9.1. Esse bug foi corrigido.
Obrigado.
Forum: Plugins
In reply to: [WooCommerce Parcelas] Error on displayingAtualize para a vers?o 1.2.9, esse erro já foi corrigido.
Abra?os.
Forum: Plugins
In reply to: [WordPress Manuten??o] How can I make the maintenance page load my plugins?Sorry the delay, I was not being notified about new threads here.
Well… I can’t call the function wp_head() before I close the <head> tag, and that is why your plugins meta tags are not being displayed.
And, actually, I can’t call the function wp_head(), because, in most cases, the plugin would stop working.
An alternative is adding a “do_action” (if you do not know what a “do_action” is, so this will not make any sense) before closing the head tag. Then, you will be able to add anything you want within <head>. I could release a new version with this feature. Just say it.
Forum: Plugins
In reply to: [WooCommerce Parcelas] deu erroDesculpe pela looooonga demora, eu n?o estava sendo notificado sobre novos posts aqui e provavelmente vc até já resolveu.
Enfim, a própria mensagem já diz como resolver, basta instalar o WooCommerce: https://www.ads-software.com/plugins/woocommerce/
O plugin só funciona com o WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Email notification issuesGreat.
Forum: Plugins
In reply to: [WooCommerce] Email notification issuesHi, michfm. When an order is placed what is its first status? Is it ‘on-hold’? Is it ‘pending’?
By default, WooCommerce only sends the processing order e-mail, automatically, in two situations:
When the order status goes from ‘pending’ to ‘processing’ and ‘pending’ to ‘on-hold’.
That means if you want to send an e-mail, automatically, when the order goes from ‘on-hold’ to ‘processing’ you will have to do some coding or install a plugin that does that.
The code below did not work for you?/** * Disable action that sends e-mail to customer warning that his/her order is processing, * as this is not true, because when the status changes from pending to on-hold, * the order is not processing yet. * * @return void */ function woocommerce_email_sending($email_class){ remove_action('woocommerce_order_status_pending_to_on-hold_notification', array($email_class->emails['WC_Email_Customer_Processing_Order'], 'trigger')); add_action('woocommerce_order_status_on-hold_to_processing_notification', array($email_class->emails['WC_Email_Customer_Processing_Order'], 'trigger')); } add_action('woocommerce_email', 'woocommerce_email_sending');
Forum: Plugins
In reply to: [WooCommerce] Client Email Sequence Does Not Make Sensefunctions.php*