Go to the All in One SEO section of the WordPress dashboard > General Settings: Here you have the option of rewriting titles (enabled), capitalizing search titles and page title format: If you click on the question mark, you’ll find more information, where you can find the following format: For CPT title Without word: ‘Archive’: If you are building custom archive template for a CPT, and want to output just the title of the CPT with no... If you want to remove these pre-title insert labels, follow these steps: That is no longer the case. add_filter ( 'get_the_archive_title', 'replaceCategoryName'); function replaceCategoryName ($title) { $title = single_cat_title ( '', false ); return $title; } Share. Currently, GP just uses the default WordPress way of displaying the category description, which adds it to every page (to describe the posts below). This will remove the categories aka product meta from the layout. //custom archive header add_filter( 'get_the_archive_title', 'errorsea_archive_title' ); function errorsea_archive_title( $title ) { if ( is_category() ) { // Remove prefix in category archive page $title = single_cat_title( '', false ); } elseif ( is_tag() ) { // Remove prefix in tag archive page $title = single_tag_title( '', false ); } elseif ( is_author() ) { // Remove prefix in author archive page $title = get_the_author(); } … Select advanced. Change the Slug.. 3. Author archive pages list all content written by a specific user on your site. .product_meta .posted_in {display: none;} .page-template-page_blog-php .post-meta, .categories, .tags { display: none; } Remove Post Meta On Categories Archives Page. Hiding a category in WordPress is a pretty simple task. To remove “Category:” from the title, you need to add some code to your theme. Navigate to Categories, then click View under your desired category. echo '

' . single_cat_title( '', false ) . '

'; The Storefront WooCommerce Customizer extension gives you additional style and layout options for the WooCommerce sections of your Storefront powered web site. Here are the steps that will help you achieve that:- Connect & Establish FTP connection with your WordPress. Show Oxygen Element by current language with WPML_CURRENT_LANGUAGE. 2- Select Extra inputs settings tab. So to remove the word you need to do the following: Login to your wp-admin Goto SEO (Yoast SEO) Titles & Metas and click on Taxonomies tab. Then Remove the word “Archive“ By default, WordPress adds a category base of /category/ to the URLs of all category archive pages. Yoast comes with a handy setting to remove the category base for you. Was very useful in my case as I just wanted to completely remove the title "Category" from category archive listings.