Hiding front page title
-
I am trying to hide the front page title with this code and its not working. I have also tried is_front_page().
add_filter('woocommerce_show_page_title', 'hide_shop_page_title'); function hide_shop_page_title($title) { if (is_page( 'welcome')) $title = false; return $title; }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Hiding front page title’ is closed to new replies.