Home Forums WoodMart support forum Cannot change Shop page title Reply To: Cannot change Shop page title

#332008

aquadark
Participant

Hello,

I’ve found a way to change the shop title using the code below. Hope this help other people who look for a solution 🙂

function wc_custom_shop_archive_title() {
if ( is_shop() ) { ?>
<title>My New Shop Custom Title – My Site Title</title>
<?php }
}
add_action( ‘wp_head’, ‘wc_custom_shop_archive_title’, 0 );

However, I find that the easiest way is to use Yoast SEO (manipulating the meta tags on the page itself), especially if you use WPML or Polylang, because the above snippet requires further customization in order to make it work for multi-lingual websites (but is perfectly OK for pages using a single language).