Can somebody please kindly provide how they have managed to implement this two codes:
Google Trusted Stores Badge Code
Order Confirmation Module Code:Code:<!-- BEGIN: Google Trusted Store --> <script type="text/javascript"> var gts = gts || []; gts.push(["id", "MASKED"]); This one is self explanatory gts.push(["google_base_offer_id", "ITEM_GOOGLE_SHOPPING_ID"]); - NEED HELP gts.push(["google_base_subaccount_id", "ITEM_GOOGLE_SHOPPING_ACCOUNT_ID"]); - This one is self explanatory gts.push(["google_base_country", "ITEM_GOOGLE_SHOPPING_COUNTRY"]); This one is self explanatory gts.push(["google_base_language", "ITEM_GOOGLE_SHOPPING_LANGUAGE"]); This one is self explanatory (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 Store -->
I will greatly appreciate if someone can please provide help with generating the variables above.Code:<!-- START Trusted Stores Order --> <div id="gts-order" style="display:none;"> <!-- start order and merchant information --> <span id="gts-o-id">MERCHANT_ORDER_ID</span> <span id="gts-o-domain">MERCHANT_ORDER_DOMAIN</span> This one is self explanatory <span id="gts-o-email">CUSTOMER_EMAIL</span> <span id="gts-o-country">CUSTOMER_COUNTRY</span> <span id="gts-o-currency">CURRENCY</span> This one is self explanatory <span id="gts-o-total">ORDER_TOTAL</span> <span id="gts-o-discounts">ORDER_DISCOUNTS</span> <span id="gts-o-shipping-total">ORDER_SHIPPING</span> <span id="gts-o-tax-total">ORDER_TAX</span> <span id="gts-o-est-ship-date">ORDER_EST_SHIP_DATE</span> <span id="gts-o-has-preorder">HAS_BACKORDER_PREORDER</span> <span id="gts-o-has-digital">HAS_DIGITAL_GOODS</span> <!-- end order and merchant information --> <!-- start repeated item specific information --> <!-- item example: this area repeated for each item in the order --> <span class="gts-item"> <span class="gts-i-name">ITEM_NAME</span> <span class="gts-i-price">ITEM_PRICE</span> <span class="gts-i-quantity">ITEM_QUANTITY</span> <span class="gts-i-prodsearch-id">ITEM_GOOGLE_SHOPPING_ID</span> This one is self explanatory <span class="gts-i-prodsearch-store-id">ITEM_GOOGLE_SHOPPING_ACCOUNT_ID</span> This one is self explanatory <span class="gts-i-prodsearch-country">ITEM_GOOGLE_SHOPPING_COUNTRY</span> This one is self explanatory <span class="gts-i-prodsearch-language">ITEM_GOOGLE_SHOPPING_LANGUAGE</span> This one is self explanatory </span> <!-- end item 1 example --> <!-- end repeated item specific information --> </div> <!-- END Trusted Stores -->


Reply With Quote

