Skip to content

Instantly share code, notes, and snippets.

@runezero
Last active May 25, 2022 13:27
Show Gist options
  • Select an option

  • Save runezero/e85b00aa5fe0c377bb1bd27c8a05f36c to your computer and use it in GitHub Desktop.

Select an option

Save runezero/e85b00aa5fe0c377bb1bd27c8a05f36c to your computer and use it in GitHub Desktop.
[Shop search redirect] Redirect the search bar to the shop page for product search #woocommerce
add_filter('get_search_form', 'adjust_search_form');
function adjust_search_form($html){
$home = get_home_url();
$shop = wc_get_page_permalink( 'shop' );
if($home == $shop){
$shop = $home .'/shop';
}
$html = str_replace($home, $shop, $html);
return $html;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment