Tagged: mailchimp enfold
I’ve a question about the MailChimp-plugin. I’ve a lot a lists (almost 300). The pulldown list doesn’t show the latest results.
Can this me changed so that I can see the the latest projects?
Hey rob_alblasserdam!
Thank you for using Enfold.
This is possible but you have to modify one of the parent theme files. Please edit the config-templatebuilder > avia-shortcode > mailchimp.php file, look for this code around line 91:
foreach($lists as $key => $list_item)
{
$newlist[$list_item['name']] = $key;
}
.. below that, add this:
arsort($newlist);
Cheers!
Ismael
Thanks Ismael!
I already changed the file av-helper-mailchimp.php in avia-shortcodes:
$response = $this->get('lists?count=1000&fields=lists.name,lists.id,lists.stats');
Is it also possible to change it in het child-theme?