Can't Edit with Cornerston

I’m not able to edit my pages using Cornerstone. Site is https://www.2foodtrippers.com. I’ve updated the theme and cleared the cache. Please help!

Hi There @mindihirsch

Thanks for writing in and I’m sorry to hear that you’re having this issue. Since you have Autoptimize plugin activated on your site, could you please try purging it’s cache, then disable it temporarily and re-test your issue again. You can check the following resource on how to clear all possible caches before testing your issue (https://www.wpbeginner.com/beginners-guide/how-to-clear-your-cache-in-wordpress/).

If you’re still having issues, you can then disable your 3rd party plugins except Cornerstone plugin to see if you’re experiencing a plugin conflict. If the issue resolved, then you can activate your plugins one by one to see which plugin causing the issue.

Also if you haven’t done yet, try increasing your memory limit bu following our guide here (https://theme.co/apex/forum/t/troubleshooting-increasing-php-memory-limit/16935) which is also a possible cause.

If you’re still having issues, please provide us with your WordPress login credentials in a secure note to check your issue further.

Let us know how it goes.
Thanks!

Your suggestion was helpful. However, I have a new issue.

It seems that the new version of Cornerstone is causing posts to repeat multiple times in search queries. This is very annoying. Can you provide a copy of the previous Cornerstone release so hat I can roll it back until the bugs are fixed?

Hi @mindihirsch,

We’re sorry you’re having this issue. Unfortuantely, this a known bug. For the mean time please add this code on your child theme’s function.php file as temporary fix:

add_filter('cornerstone_enable_search', 'disable_search_for_admin');
function disable_search_for_admin ( $enable ) {
	
	return is_admin() ? false : $enable;
	
}

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.