2013-05-03 94 views
0

¡HOLA,從分類頁面獲取一個產品的信息在Magento

我想成立這個該死的谷歌信任我的Magento網站商店腳本。我似乎Google希望我將以下JavaScript添加到每個頁面,並只從每個頁面調用一個產品。這對產品頁面沒問題,但是在類別頁面等其他頁面上遇到了一些麻煩。我想我可以以某種方式將腳本添加到template/catalog/product/list.phtml因此無論如何,我想知道是否可以將PHP的每個類別頁面上的第一個產品列表添加到Google javascript?

有沒有人想出瞭如何將腳本添加到Google想要的Magento中,或者是否有一個關於它的教程?

下面是谷歌的javascript:

<!-- BEGIN: Google Trusted Stores --> 
<script type="text/javascript"> 
    var gts = gts || []; 
    gts.push(["id", "xxxxxx"]); 
    gts.push(["google_base_offer_id", "<?php echo $this->htmlEscape($_product->getSku()) ?>"]); 
    gts.push(["google_base_subaccount_id", "xxxxxxxx"]); 
    gts.push(["google_base_country", "US"]); 
    gts.push(["google_base_language", "EN"]); 
    (function() { 
    var scheme = (("https:" == document.location.protocol) ? "https://" : "http://"); 
    var gts = document.createElement("script"); 
    gts.type = "text/javascript"; 
    gts.async = true; 
    gts.src = scheme + "www.googlecommerce.com/trustedstores/gtmp_compiled.js"; 
    var s = document.getElementsByTagName("script")[0]; 
    s.parentNode.insertBefore(gts, s); 
    })(); 
</script> 
<!-- END: Google Trusted Stores --> 

感謝

回答

0

我這樣一個虛擬的代碼已經在谷歌信譽商店模塊。 :)

相關問題