Hey -- relatively small thing here, but is there any way to get rid of that pop-up that comes up every single time I load a page in the dashboard? It's kind of grating.
Thanks!
Hey -- relatively small thing here, but is there any way to get rid of that pop-up that comes up every single time I load a page in the dashboard? It's kind of grating.
Thanks!
Which popup do you mean? And which version of the plugin are you running?
Hi Siri Myhrom,
I had the same problem here...
Just go to "/wp-content/plugins/wordpress-seo/admin/class-pointers.php" and change
if ( !isset($options['ignore_tour']) || !$options['ignore_tour'] ) {
wp_enqueue_style( 'wp-pointer' );
wp_enqueue_script( 'jquery-ui' );
wp_enqueue_script( 'wp-pointer' );
wp_enqueue_script( 'utils' );
add_action( 'admin_print_footer_scripts', array( &$this, 'print_scripts' ), 99 );
add_action( 'admin_head', array( &$this, 'admin_head' ) );
}
to
// if ( !isset($options['ignore_tour']) || !$options['ignore_tour'] ) {
// wp_enqueue_style( 'wp-pointer' );
// wp_enqueue_script( 'jquery-ui' );
// wp_enqueue_script( 'wp-pointer' );
// wp_enqueue_script( 'utils' );
// add_action( 'admin_print_footer_scripts', array( &$this, 'print_scripts' ), 99 );
// add_action( 'admin_head', array( &$this, 'admin_head' ) );
// }
As you can see, I only commented the part which generates the Pointer (PopUp) in the navigation.
Hope it work for you!
See you, helper
@Joost de Valk: The problem is that the tour comes up every single time on every admin page you enter...
Many thanks! I love the plugin, just not the popup. :)
You must log in to post.