Hi,
It sounds like you’re dealing with duplicate meta titles being generated across different pages, including product URLs. This is a common issue when the same title is applied to multiple pages, and it can affect SEO performance if not addressed properly.
Here’s a step-by-step approach to help you resolve this:
Check Wix SEO Settings
Main Page Meta Title: Make sure the meta title for your main page (homepage) is set correctly in the SEO (Google) section of the page settings. Sometimes, the homepage title gets copied to other pages if it’s not set correctly.
Product Page Titles: For product pages, Wix should automatically generate unique meta titles based on the product name, but you might need to manually set the titles for some pages.
To check, go to the SEO (Google) section of each product page and make sure the meta title reflects the individual product name.
Override Default Title with Velo (Wix Code)
If you’re comfortable with coding, you can use Velo (Wix’s development platform) to dynamically adjust or override meta titles for different pages. For example, you could write custom code to change the title for each product page, like this:
import wixSeo from ‘wix-seo’;
$w.onReady(function () {
let pageTitle = “Custom Title for This Product”; // Custom title for each page
wixSeo.setMetaTags({
“title”: pageTitle,
});
});
This code allows you to set unique meta titles dynamically on each page. Make sure to replace “Custom Title for This Product” with the relevant title for each specific page.
Canonical Tags to Prevent Duplication
To further prevent Google from considering duplicate titles as separate content, you can use canonical tags to point to the original version of the page. Wix automatically adds canonical tags to avoid SEO penalties for duplicate content, but it’s good practice to verify this is set correctly on all pages.