Remove “Category:” Label for Woocommerce
-
Hi,
I can not find where in the world the “Category:” from WooCommerce category title.I have seen you have published a code some months ago that remove “Archive:” for posts archive.
add_filter( 'get_the_archive_title', 'wpsite_archive_title_remove_prefix' ); function wpsite_archive_title_remove_prefix( $title ) { if ( is_post_type_archive() ) { $title = post_type_archive_title( '', false ); } return $title; }
Is there any way to remove “Category:”?
Regards,
Francesco
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Remove “Category:” Label for Woocommerce’ is closed to new replies.