Support

Home Forums Event Espresso Premium EE4 Admin Dashboard Issue After Upgrading

EE4 Admin Dashboard Issue After Upgrading

Posted: December 14, 2015 at 9:18 am

Viewing 6 reply threads


ATSI

December 14, 2015 at 9:18 am

Hello,

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?


ATSI

December 14, 2015 at 9:28 am

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?

http://www.atsicad.com/wp-admin/admin.php?page=espresso_events&action=default


Lorenzo Orlando Caum

  • Support Staff

December 14, 2015 at 10:18 am

Hello, are there any caching services running on your site?

What happens if you deactivate Event Espresso and reactivate it? Are you then able to freely browse between various WP dashboard screens?


Lorenzo


ATSI

December 15, 2015 at 8:25 am

No caching services running and deactivate/reactivate did not work. Any other ideas?


Josh

  • Support Staff

December 15, 2015 at 8:59 am

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.


ATSI

December 15, 2015 at 10:21 am

I am using a custom menu application that was causing the issue. I got it worked out. Thanks for the help.


Josh

  • Support Staff

December 15, 2015 at 2:20 pm

You’re welcome.

Viewing 6 reply threads

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.

Event Espresso