• Woocommerce is activated but I’m using theme for regular site, how to change search so that it only searches posts/pages and not products?

Viewing 1 replies (of 1 total)
  • Hi collinsavenue,

    You can replace the search for a regular WordPress search using something like this:

    function marce_change_search() {
    	remove_action( 'storefront_header', 'storefront_product_search', 40 );
    }
    add_action( 'init', 'marce_change_search' );
    
    function wpdocs_after_setup_theme() {?>
    		<div class="site-search">
    		<?php get_search_form() ?>
    		</div> <?php
    }
    add_action( 'storefront_header', 'wpdocs_after_setup_theme' );

    Cheers,

Viewing 1 replies (of 1 total)
  • The topic ‘Search only posts/pages’ is closed to new replies.