Custom Woocommerce category title
-
Hi all,
I have the following snippet for changing certain category titles, but its not working in ocean theme, Im guessing its not using the correct hook? Can anyone advise help?
add_filter( 'woocommerce_page_title', 'customize_woocommerce_page_title', 10, 1 ); function customize_woocommerce_page_title( $page_title) { // Custom title for the product category 't-shirts' if ( is_product_category('t-shirts') ) { $page_title = 'Something'; } // Custom title for the product category 'hoodies' elseif ( is_product_category('hoodies') ) { $page_title = 'Something else'; } return $page_title; }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Custom Woocommerce category title’ is closed to new replies.