Created
August 23, 2019 11:30
-
-
Save colmtroy/309d3851ea8dcd96407e16ca40704bb0 to your computer and use it in GitHub Desktop.
Remove Shoptimizer Primary Navigation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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