I just upgraded to EE 4.8.26.p and now when I click on the “Events” link in the WordPress dashboard it takes me to the espresso_about page, not the espresso_events page. Even when I try to navigate to the espresso_events page it redirects me to the espresso_about page. What is going on here?
I can get to the events admin area by manually going to the following link, but the dashboard links omit the &action=default. Is this the correct behavior?
You could try clearing your browser’s cookies/cache. If all else fails, you can disable that redirect to the about page by adding this to your site’s functions plugin:
// stop redirect to about page after update
add_action( 'init', 'jf_ee_remove_about_ee_redirect', 4 );
function jf_ee_remove_about_ee_redirect() {
if ( class_exists( 'EE_System' )){
$system = EE_System::instance();
remove_action( 'AHEE__EE_System__load_CPTs_and_session__start', array( $system, 'redirect_to_about_ee' ), 9 );
}
}
You can add the above to a functions plugin or into your WordPress theme’s functions.php file.
The support post ‘EE4 Admin Dashboard Issue After Upgrading’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.
Support forum for Event Espresso 3 and Event Espresso 4.