Yea same here and messes up my multisite. Every new user that signs up, gets redirected to admin.php?page=wpseo_dashboard&intro=1
Had to disable the plugin. Any code snippet fix it?
Thanks.
Edit: Nevermind, just updated and now is fine.
Commenting out the add action line got rid of the tour popup for me:
add_action( ‘admin_print_footer_scripts’, array( $this, ‘intro_tour’ ) );
45 line in file /admin/class-pointers.php
//add_action( ‘admin_print_footer_scripts’, array( $this, ‘intro_tour’ ) );
45 line in file /admin/class-pointers.php
YES!
The issue in this post is discussed in more useful detail here: https://wordpress.org/support/topic/start-tour-bug?replies=23#post-7056126
In that post, the plugin authors have joined the conversation and things are being resolved.
I’ve found that the solution is to clear the cache — any server-side caching and CDN cache needs to be cleared as well as the browser cache. After that, the problem is resolved.
Thanks, WORKS
Changing /admin/class-pointers.php
add_action( ‘admin_print_footer_scripts’, array( $this, ‘intro_tour’ ) );
to
//add_action( ‘admin_print_footer_scripts’, array( $this, ‘intro_tour’ ) );
Restarting NGINX fixed it for me