Last active
August 2, 2024 12:40
-
-
Save jchristopher/3135783eb3521bebbc5e to your computer and use it in GitHub Desktop.
Disable the default SearchWP Live Search results theme CSS while retaining the positioning
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
| <?php | |
| function my_remove_searchwp_live_search_theme_css() { | |
| wp_dequeue_style( 'searchwp-live-search' ); | |
| } | |
| add_action( 'wp_enqueue_scripts', 'my_remove_searchwp_live_search_theme_css', 20 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
it's changed to:
wp_dequeue_style( 'searchwp-forms' );