谷歌支付api集成到woocommerce

hpxqektj  于 2021-09-13  发布在  Java
关注(0)|答案(0)|浏览(239)

我正试图在我的woocommerce网站上实现谷歌支付按钮,而不设置尽可能多的条带。我使用以下JSFIDLE指南:https://jsfiddle.net/ynt8p152/. 我一直在思考如何捕获我的woocommerce产品数据,并将其替换为以下代码:

function getGoogleTransactionInfo() {
  return {
    displayItems: [
      {
        label: "Subtotal",
        type: "SUBTOTAL",
        price: "11.00",
      },
      {
        label: "Tax",
        type: "TAX",
        price: "1.00",
      }
    ],
    countryCode: 'US',
    currencyCode: "USD",
    totalPriceStatus: "FINAL",
    totalPrice: "12.00",
    totalPriceLabel: "Total"
  };
}

因为我的产品是动态的。请告知。

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题