Created
August 24, 2016 08:17
-
-
Save RiaanKnoetze/a5743603a4e9bd10ee76b9746d36f851 to your computer and use it in GitHub Desktop.
Show search section from "Product Search" extension in Storefront header
This file contains 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
// Hide native search bar | |
remove_action( 'storefront_header', 'storefront_product_search', 40 ); | |
// Show "Product Search" search bar | |
add_action( 'storefront_header', 'storefront_predictive_search', 40 ); | |
function storefront_predictive_search() { | |
echo do_shortcode('[woocommerce_product_search]'); | |
} |
This file contains 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
.product-search.floating { | |
width: 21.7391304348%; | |
float: right; | |
margin-right: 0; | |
clear: none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment