Remove “Search Results for”
-
Hey Woo
Can I remove “Search results for:” text when doing a product search? I always wondered why it’s there. If you search, I guess you know you did a search, so over explanatory imho.
Note, I wish to keep the searched word/phrase. Example I search for “Beautiful Woman”, so I just want the heading output to be “Beautiful Woman”.
I found this code but it removes the entire title/heading:
function filter_woocommerce_page_title($page_title){ if (is_search()){ {$page_title = ''; } } add_filter('woocommerce_page_title', 'filter_woocommerce_page_title', 10, 1);
So how can I alter this code to make it work?
The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Remove “Search Results for”’ is closed to new replies.