Replacing “Products” title on woocommerce shop page
-
Hello, I’m trying to replace the “Products” page title that woocommerce puts as the title on the shop page. I want to put custom text there.
I’ve disabled the page title because it was also showing up in addition to the header title of “Products” with this code:
//Remove page title from shopping page add_filter( 'woocommerce_show_page_title', 'not_a_shop_page' ); function not_a_shop_page() { return boolval(!is_shop()); }
Any idea how to change or get rid of the “Products” text at the top?
Thanks
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Replacing “Products” title on woocommerce shop page’ is closed to new replies.