Skip to content

Instantly share code, notes, and snippets.

@colmtroy
Created August 23, 2019 11:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colmtroy/309d3851ea8dcd96407e16ca40704bb0 to your computer and use it in GitHub Desktop.
Save colmtroy/309d3851ea8dcd96407e16ca40704bb0 to your computer and use it in GitHub Desktop.
Remove Shoptimizer Primary Navigation
add_action( 'init', 'remove_shoptimizer_primary_navigation' );
/**
* Remove the primary navigation markup in Shoptimizer.
*
* @since 1.0.0
*
* @return void
*/
function remove_shoptimizer_primary_navigation() {
remove_action( 'shoptimizer_navigation', 'shoptimizer_primary_navigation_wrapper', 42 );
remove_action( 'shoptimizer_navigation', 'shoptimizer_primary_navigation', 50 );
remove_action( 'shoptimizer_navigation', 'shoptimizer_primary_navigation_wrapper_close', 68 );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment