Hi Daniel,How can I eliminate the page title on top if the image banner, i.r.: Home? or About us, etc.?Please detailed procedure.Thanks!Frederick
Hi Frederick,
Thanks for your question! The WooCommerce page templates display the page title and can be turned off using a filter. The filter name is 'woocommerce_show_page_title'. You can see the filter on this page: https://github.com/woothemes/woocommerce/blob/master/templates/archive-product.php#L35
To remove this page title add this snippet of code to your theme's functions.php file:
add_filter( 'woocommerce_show_page_title', 'growdev_remove_title' );
function growdev_remove_title (){
return false;
}
Hope that helps!