Filipe Chaves
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Wirecard Brazil Official] Checkout transparente não funcionaObrigado @apiki, assim resolve o problema 🙂
Forum: Plugins
In reply to: [WooCommerce Wirecard Brazil Official] 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: [WooCommerce Wirecard Brazil Official] 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.