如何在感谢页面上获取 Shopify 交易网关?
How to get Shopify transaction getway on thank you page?
我想获取用户选择的支付方式类型。我试过使用
{{ transaction.gateway }}
如 Shopify Liquid Documentation 所述。但是我不知道为什么这个值是空的。下面是我添加的小代码片段
Admin->Settings->Checkout->Additional content and scripts
<script type="text/javascript">
var temp = " {{ shipping_method.title }} ";
var temp1 = "{{ transaction.gateway }}";
alert(temp);
alert(temp1);
谁能帮帮我?
尝试{{ transactions[0].gateway }}
我想获取用户选择的支付方式类型。我试过使用
{{ transaction.gateway }}
如 Shopify Liquid Documentation 所述。但是我不知道为什么这个值是空的。下面是我添加的小代码片段
Admin->Settings->Checkout->Additional content and scripts
<script type="text/javascript">
var temp = " {{ shipping_method.title }} ";
var temp1 = "{{ transaction.gateway }}";
alert(temp);
alert(temp1);
谁能帮帮我?
尝试{{ transactions[0].gateway }}