Home › Forums › Backend Issues (wp-admin) › Permissions Error on Export Page › Reply To: Permissions Error on Export Page
I figured it out. I actually re-included the ACF in my plugin menu temporarily so that i can access it when it is disabled when other’s are using define(“ACF_LITE”,true) in their plugins. When you have this paradox, you can’t open ACF menu unless you do this, but while doing this you cannot access the export.
So, to make it work, you need find all of the those acf_lite and set them to false then I had to disable myown menu call to it. or just know the url to it.
//add_submenu_page($top_menu_item, '', 'ACF', 'manage_options', 'edit.php?post_type=acf')
;
FYI, this doesn’t work for disabling the ACF menu view:
add_filter('acf/settings/show_admin', '__return_false');
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.