If you are using WooCommerce for the ecommerce store on your WordPress website you may want to update the shop page title to a different title. You can do that without a plugin if you then add this code to your functions.php file. We recommend that you backup your WordPress website before you make updates on there.
Update WooCommerce shop page title
/** * New WooCommerce shop page title * * @author WPSnacks.com * @link https://wpsnacks.com/ */ function new_shop_page_title( $page_title ) { if( 'Shop' == $page_title) { return "YOURTEXTHERE"; } } add_filter( 'woocommerce_page_title', 'new_shop_page_title');
You can then replace the YOURTEXTHERE with the text you want for the new shop page title. Now if that works for you it would update the page title for the shop page on WooCommerce on your WordPress website on there.
Leave a Reply