2014-09-10 3 views
0

Bigcommerce 판매자를 위해 Google Trusted Stores를 구현 한 경험이있는 사용자가 있는지 궁금합니다. Bigcommerce는 귀하가 지불하는 경우 귀하를 대신해 이것을 제공하지만 나는 직접 처리하려고합니다.Bigcommerce 및 Google Trusted Store 통합

Google Trusted Stores 주문 확인 모듈에서 특정 정보가 전달되어야합니다. 지금까지 내가 아는 한,이 정보 중 일부는 Bigcommerce 주문 확인 페이지의 변수로 사용할 수 없습니다. order confirmation module에 대한 문서는 다음과 같습니다.

알 수 있듯이 주문의 항목이 선주문 여부에 상관없이 고객 이메일, 고객 국가 등의 데이터가 필요합니다. Bigcommerce에서이 정보를 얻을 수있는 방법이 있습니까? 사용할 수있는 유형 %%GLOBAL_CUSTOMEREMAIL%%의 변수를 출력합니까?

그렇지 않으면 Bigcommerce가 Google Trusted Integration을 처리 할 때 서버에서이 정보를 채워야합니다. 즉, Bigcommerce를 사용하는 Google 신뢰할 수있는 스토어가 될 수 없다는 뜻입니다. 나는 그것이 사실이 아니라고 희망하고있다.

누구나이 경험이 있습니까?

답변

1

플래티넘 등급 (골드 등급 요금제)을 신청하지 않고 Google Trusted Stores 코드를 사용 설정 한 경험이 있습니다. ShipWorks를 통해 자동 배송 및 취소 피드를 자동으로 설정했습니다. 나는 내가 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 --> 

내가 웹 사이트에 주문 확인 모듈 코드를 삽입해야합니다. 문제는 추정치를 알아내는 것입니다. Ship Date와 Est. 배달 날짜 및 주문에있는 각 항목에 대한 요청 된 데이터를 얻기 위해 "루프"에 넣어. order.html 페이지에 다음 코드를 추가했습니다.

<!-- START Google Trusted Stores Order --> 
    <div id="gts-order" style="display:none;" translate="no"> 

    <!-- start order and 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 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">%%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 --> 

누구든지 성공할 수 있습니까?