Bigcommerce and Google Trusted Store integration -


i'm wondering if has had experience implementing google trusted stores bigcommerce merchant. bigcommerce offers if pay them, i'm trying myself.

on google trusted stores order confirmation module, require information passed them. far know, of information not available variables on bigcommerce order confirmation page. here docs order confirmation module.

as can see, requires data customer email, customer country, whether or not item in order on preorder. there way information bigcommerce? output variables of type %%global_customeremail%% can used?

if not, bigcommerce must populate information on server when handle google trusted integration you. means can not google trusted store using bigcommerce unless pay them integration. i'm hoping not case.

does have experience this?

i have experience in enabling google trusted stores code without having subscribe platinum level (i'm on gold level plan). have set automated daily shipping , cancellation feeds through shipworks. believe set "badge" code correctly on footer.html:

<!-- begin: google trusted stores --> <script type="text/javascript">     var gts = gts || [];      gts.push(["id", "######"]);     gts.push(["badge_position", "bottom_right"]);     gts.push(["locale", "en_au"]);     gts.push(["google_base_offer_id", "%%global_productid%%"]);     gts.push(["google_base_subaccount_id", "8669332"]);     gts.push(["google_base_country", "au"]);     gts.push(["google_base_language", "en_au"]);      (function() {     var gts = document.createelement("script");     gts.type = "text/javascript";     gts.async = true;     gts.src = "https://www.googlecommerce.com/trustedstores/api/js";     var s = document.getelementsbytagname("script")[0];     s.parentnode.insertbefore(gts, s);     })(); </script> <!-- end: google trusted stores --> 

i have put order confirmation module code on website. issue figuring out est. ship date , est. delivery date , putting in "loop" requested data each item in order. have placed following code on order.html page:

<!-- start google trusted stores order -->     <div id="gts-order" style="display:none;" translate="no">      <!-- start order , merchant information -->     <span id="gts-o-id">%%global_orderid%%</span>     <span id="gts-o-domain">www.****.com.au</span>     <span id="gts-o-email">%%global_currentcustomeremail%%</span>     <span id="gts-o-country">%%global_shipcountry%%</span>     <span id="gts-o-currency">%%global_currencyname%%</span>     <span id="gts-o-total">%%global_ordertotal%%</span>     <span id="gts-o-discounts">%%global_coupondiscount%%</span>     <span id="gts-o-shipping-total">%%global_shippingprice%%</span>     <span id="gts-o-tax-total">%%global_taxcost%%</span>      <span id="gts-o-est-ship-date">order_est_ship_date</span>      <span id="gts-o-est-delivery-date">order_est_delivery_date</span>     <span id="gts-o-has-preorder">n</span>     <span id="gts-o-has-digital">n</span>     <!-- end order , merchant information -->      <!-- start repeated item specific information -->     <!-- item example: area repeated each item in order -->     <span class="gts-item">         <span class="gts-i-name">%%global_productname%%</span>         <span class="gts-i-price">%%global_productprice%%</span>         <span class="gts-i-quantity">%%global_productquantity%%</span>         <span class="gts-i-prodsearch-id">%%global_productid%%</span>         <span class="gts-i-prodsearch-store-id">######</span>         <span class="gts-i-prodsearch-country">au</span>         <span class="gts-i-prodsearch-language">en_au</span>     </span>     <!-- end item 1 example -->     <!-- end repeated item specific information -->      </div>     <!-- end google trusted stores order --> 

does succeed on this?


Comments

Popular posts from this blog

javascript - how to protect a flash video from refresh? -

android - Associate same looper with different threads -

visual studio 2010 - Connect to informix database windows form application -