• User Attivo

    costruzione microdati con javascript

    Buongiorno, ho questo codice e vorrei inserire il rich snippets che fa apparire le stelline nella SERP. Purtroppo non conoscendo bene il javascript ho problemi a costruire correttamente i microdati. Quando faccio l'anteprima su google i tag vengono rilevati ma i valori essendo "fasulli" non fanno apparire le stelline. Spero qualcuno mi possa aiutare. Grazie in anticipo a tutti!

    <div class="rw-ui-container" style="vertical-align: baseline;"></div>
    
    <script type="text/javascript">(function(d, t, e, m){
            // Async Rating-Widget initialization.
        window.RW_Async_Init = function(){
                    
            RW.init({
                huid: "184402",
                uid: "995a66fe4fb4b98e577a96cc839ddf77",
                source: "website",
                options: {
                    "advanced": {
                        "text": {
                            "vote": "Voto"
                        }
                    },
                    "size": "medium",
                    "lng": "it",
                    "style": "oxygen"
                } 
            });
            RW.render();
        };
            // Append Rating-Widget JavaScript library.
        var rw, s = d.getElementsByTagName(e)[0], id = "rw-js",
            l = d.location, ck = "Y" + t.getFullYear() + 
            "M" + t.getMonth() + "D" + t.getDate(), p = l.protocol,
            f = ((l.search.indexOf("DBG=") > -1) ? "" : ".min"),
            a = ("https:" == p ? "secure." + m + "js/" : "js." + m);
        if (d.getElementById(id)) return;              
        rw = d.createElement(e);
        rw.id = id; rw.async = true; rw.type = "text/javascript";
        rw.src = p + "//" + a + "external" + f + ".js?ck=" + ck;
        s.parentNode.insertBefore(rw, s);
        }(document, new Date(), "script", "rating-widget.com/"));</script>