Storefront theme search results custom template

Replaces default Storefront archive with a custom template for search results.

// Search Results Template
add_action( 'template_redirect', function() {

	// Search Results Only
	if( ! is_search() ) {
		return;
	}

	// Remove Defaults
	remove_action( 'storefront_loop_post', 'storefront_post_header', 10 );
	remove_action( 'storefront_loop_post', 'storefront_post_content', 30 );
	remove_action( 'storefront_loop_post', 'storefront_post_taxonomy', 40 );

	// Load Grid CSS
	add_action( 'wp_head', function() {

		?>
		<style>
		div.search-results-wrap, div.infinite-wrap {
			display: grid;
			grid-gap: 3em;
			grid-template-columns: repeat( auto-fit, minmax( 300px, 1fr ) );
		}
		</style>
		<?php

	} );

	// Start Wrapper
	add_action( 'storefront_loop_before', function() {

		echo '<div class="search-results-wrap">';

	} );

	// Custom Loop Body
	add_action( 'storefront_loop_post', function() {

		// Get Product Price
		$price = '';
		if( get_post_type() == 'product' ) {
			$product = wc_get_product();
			$price = sprintf(
				'<span class="price">%s</span>',
				$product->get_price_html()
			);
		}

		?>
		<div class="entry-content">
			<a href="<?php the_permalink(); ?>">
				<?php the_post_thumbnail( 'woocommerce_thumbnail' ); ?>
				<h2 class="woocommerce-loop-product__title"><?php the_title(); ?></h2>
				<?php echo $price; ?>
			</a>
		</div>
		<?php

	} );

	// End Wrapper
	add_action( 'storefront_loop_after', function() {

		echo '</div>';

	} );

} );

Instructions for Storefront theme search results custom template

  1. Log into a staging or locally hosted clone of your site.
  2. Install and activate Code Snippets plugin.
  3. WP Admin > Snippets > Add New
  4. Copy and paste the code from the section above.
  5. Check to ensure formatting came over properly.
  6. Customize the code as desired.
  7. Add a meaningful title.
  8. Select whether to run on front-end or back-end (or both).
  9. Click “Save and Activate”.
  10. Test your site to ensure it works.
  11. Disable if any problems, or recover.
  12. Repeat for live environment.

Need help modifying Storefront theme search results custom template?

Contact me. I can help with fitting projects or refer to my partner.

License

All code snippets are licensed GPLv2 (or later) matching WordPress licensing.

Except when otherwise stated in writing the copyright holders and/or other parties provide the program as-is without warranty of any kind, either expressed or implied, including, but not limited to, the implied warranties of merchantability and fitness for a particular purpose.

Disclaimer of warranty