Filipe Chaves
Forum Replies Created
-
Forum: Plugins
In reply to: [WordPress Sentry] Sentry Browser versionThank you a lot again Alex, you’re super quick ;D
Forum: Plugins
In reply to: [WordPress Sentry] Isn’t possible to filter the optionsOhhh I’m so sorry, thank you a lot for this explanation!
Now I got how this excluded paths works! Thanks again!
I was just temporarily inserting into wp-includes/post.php a call for a undefined function like
blablabla()
, but yeah, it completely makes no sense because the plugin is not loaded at this time =pThanks for the quick answers and for the explanation!
Forum: Plugins
In reply to: [WordPress Sentry] Isn’t possible to filter the optionsHey Alex!
Even setting an empty array to
$options->setInAppExcludedPaths([]);
, when I force a fatal error onwp-includes/post.php
just for test, it is not logging on Sentry.I’d like to modify this values to log all WordPress errors, even of the core.
But is it possible? The plugin loads after those WordPress folders (wp-includes/wp-admin) right? So it would not make sense ??Forum: Plugins
In reply to: [Pagamento Moip for WooCommerce] Checkout transparente n?o funcionaObrigado @apiki, assim resolve o problema ??
Forum: Plugins
In reply to: [Pagamento Moip for WooCommerce] Checkout transparente n?o funcionaNa verdade o filtro n?o atenderá para os usuários que desejam utilizar o checkout transparente e n?o possuem conhecimento em programa??o.
O correto seria o has_fields true por padr?o, para o plugin funcionar normalmente com checkout transparente conforme consta na descri??o do plugin.
Forum: Plugins
In reply to: [Pagamento Moip for WooCommerce] Checkout transparente n?o funcionaOlá @apiki, sim, setando o atributo como true resolve o problema.
Tem algum motivo para estar setado como false?
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Fatal errorHey there, i’ve found a solution for this problem.
This happens because probably your API Key is not valid anymore, and the MailChimp API can’t connect to MailChimp services. So you need to configure a new API Key.
The settings page frozen occurs because MailChimp plugin triggers an WP Error on line 584 of file mailchimp/mailchimp.php, trying to get the mail lists of MailChimp service.
What you need to do is verify if $lists is an WP Error, then return null:
$lists = $api->get('lists',100, array('fields' => 'lists.id,lists.name,lists.email_type_option')); if (is_wp_error( $lists ) ) { return; }
Done that, everything should works fine
Hey there, i’ve found a solution for this problem.
This happens because probably your API Key is not valid anymore, and the MailChimp API can’t connect to MailChimp services. So you need to configure a new API Key.
The settings page frozen occurs because MailChimp plugin triggers an WP Error on line 583 of file mailchimp/mailchimp.php, trying to get the mail lists of MailChimp service.
What you need to do is verify if $lists is an WP Error, then return null:
$lists = $api->get('lists',100, array('fields' => 'lists.id,lists.name,lists.email_type_option')); if (is_wp_error( $lists ) ) { return; }
Done that, you can see the Settings page and set up a new API Key.