• Resolved leejay1

    (@leejay1)


    Hi, Is this possible to change the ‘Products’ site title on the store page?

    I use the Woocommerce plugin but I want to change the site title to ‘Items’
    I changed ‘product’ to ‘item’ in the permalink, slugs.

    But It still shows ‘products’ in breadcrumbs and on the site title.

    If does anyone has an idea please let me know!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Mirko P.

    (@rainfallnixfig)

    Hi @leejay1,

    Check if this snippet will do the job. Use the Code Snippets plugin to add custom snippets to your site. If it doesn’t work I recommend reaching out to one of the customization experts listed at https://woocommerce.com/customizations/.

    /**
     * Change the Shop archive page title.
     * @param  string $title
     * @return string
     */
    function wc_custom_shop_archive_title( $title ) {
    	if ( is_shop() ) {
    		return str_replace( __( 'Products', 'woocommerce' ), 'New Home Page Title', $title );
    	}
    
    	return $title;
    }
    add_filter( 'wp_title', 'wc_custom_shop_archive_title' );

    Cheers.

    Thread Starter leejay1

    (@leejay1)

    Hi @rainfallnixfig

    It didn’t work 🙁
    And the link you sent me for reaching out to experts seems like I need to buy the Pro version or Pay? doesn’t it?

    Hi @leejay1

    You would probably require some custom work for this requirement and it may be a paid service. Please be informed that we are unable to provide support for customizations per our Support Policy. If you need any assistance with the code and/or customization, you’d need to reach out to a web developer or one of our experts, as suggested before.

    Alternatively, you may be able to find someone willing to volunteer their time and knowledge in the free PHP support forum at PHP Builder or within the Advanced WooCommerce group on Facebook.

    We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above info was helpful and you were able to proceed as advised.

    If you have further questions, please feel free to open a new topic.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘[NSFW] How to change ‘Product’ site title’ is closed to new replies.