How to update structured data of my product page ?

Hello,

I am trying to add fields to my product page structured data.

So first I try to display the actual structuredData using :

console.log(wixSeo.structuredData);

But nothing is displayed. Am I missing something here ?? Maybe there is a getStructuredData() method ?

Thanks for your help !

Hey Geoffrey :raised_hand_with_fingers_splayed:

You’re most likely logging it inside the page’s onReady() function, I suggest that you move it to the global scope

let structuredData = wixSeo.structuredData;

$w.onReady(() => {
    console.log(structuredData);
})

Let me know if that works.
Ahmad

Hello Ahmad, thanks for your answer.

Unfortunately, it’s not working.

Here is the complete javascript file from my product page.

Everything else works except thaht the structuredData is an empty array

import wixWindow from 'wix-window';
import wixData from 'wix-data';
import wixSeo from 'wix-seo';

let structuredData = wixSeo.structuredData;

$w.onReady(function () {
    initPage(); //OK
    initReviews(); // OK
    console.log(structuredData); // display []
});
 
async function initPage() {
    $w('#ratingsDisplay1').hide();
 try {
 const product = await $w('#productPage').getProduct();
 if (!product.inStock) {
            $w('#backInStockButton').show();
            $w("#backInStockButton").onClick((event) => {
 //open the lightbox and send the product Id
                wixWindow.openLightbox('Enter Details', { 'productId': product._id });
            });
        }
    } catch (error) {
        console.error('product page -> initPage error ', error);
 return false;
    }
}

async function initReviews() {
 const product = await $w('#productPage').getProduct();
 //Récupérer les reviews du produit
 await $w('#reviews').setFilter(wixData.filter().eq('productId', product._id));
 //afficer les reviews
    showReviews();
    loadStatistics();
}

export function showReviews() {
 
 if ($w('#reviews').getTotalCount() > 0) {
        $w('#reviewsStrip').expand();
    } else {
        $w('#reviewsStrip').hide();
        $w('#reviewsStrip').collapse();
    }
}

async function loadStatistics() {
    console.log('1');
 const product = await $w('#productPage').getProduct();
    console.log('2');
 
    console.log($w('#reviews').getTotalCount());
    $w("#reviews").getItems(0,$w('#reviews').getTotalCount())
  .then( (result) => {
      console.log(result.items);
    displayRatings(result.items);
  } )
  .catch( (err) => {
 let errMsg = err.message;
 let errCode = err.code;
  } );
 //$w('#recoPercent').show();
}

function displayRatings(items) {
 const total = items.length;
 let note = 0;
 for (var i = 0; i < total; i++) {
        console.log('wootwoot');
        note = note +items[i].note;
    }
 let ratings = $w('#ratingsDisplay1');
 let avgRating = (Math.round(note * 10 / total) / 10);
    ratings.rating = avgRating;
    ratings.numRatings = total;
    ratings.show();
}

Hey Geoffrey :raised_hand_with_fingers_splayed:

The problem is that you’re not waiting for the promises to resolve, here’s how:

$w.onReady(async () => {
    await Promise.all([
        initPage(),
        initReviews()
    ]).then(() => {
        console.log(structuredData);
    })
})

For that to work you need to change the type of the main functions to async functions that return a Promise instead of Void, also, you still need to change the structured data on the SEO, which something you’re not doing in your code.

Here’s an example of a product data in JSON-LD format:

wixSeo.setStructuredData([
    {
      "@context": "https://schema.org/",
      "@type": "Product",
      "name": "Nasriya Software",
      "image": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
      ],
      "description": "The is an example description",
      "sku": "0446310786",
      "mpn": "null",
      "brand": {
      "@type": "Brand",
        "name": "Nasriya"
      },
      "review": {
        "@type": "Review",
        "reviewRating": {
        "@type": "Rating",
        "ratingValue": "3.5",
        "bestRating": "5"
      },
      "author": {
        "@type": "Person",
        "name": "Ahmad"
      }
    },
    "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "4.4",
    "reviewCount": "89"
    },
    "offers": {
      "@type": "Offer",
      "url": "https://nasriya.net/services",
      "priceCurrency": "USD",
      "price": "119.99",
      "priceValidUntil": "2020-11-20",
      "itemCondition": "https://schema.org/UsedCondition",
      "availability": "https://schema.org/InStock"
    }
  }
])

Hope this helps~!
Ahmad

Thank you for your help Ahmad.

I did not think it was necessary to set the strcutured data myself.

I thought Wix already filled some of the the structured Data fields (price, description, …) because when I check my product page with the Google Search Console tool, a structured data schema is found by the GSC tool as you can see in this picture :

And I thought that I could retrieve this schema with seo
So if I understand well, even if a schema is automatically generated, I need to create another schema to override the first one and add all the fields that I want. Is this correct ?

And so there is no way to retrieve the schema generated by wix ?