We have a website that has stopped working since the update to version 6. We seem to be having similar issues to the person in this thread:
Since the update the site isn’t just slow, but it’s impossible to log into. We currently switched to a different theme to allow us to log into the website – how can we fix this?
Hey BrendanG,
Do you have server error logs which you could share with us?
Best regards,
Rikard
We had to revert back to Enfold 5.7. Or you can add this to your child theme’s functions.php as a temporary fix until the authors of Enfold fix this issue:
// Enfold 6.0 slow query fix
add_filter('avf_before_query_wp_default_custom_fields', function($custom_fields) { return []; });
The dynamic custom fields don’t work anymore with this line, but at least your website is working again.