订单未出现在管理面板 shopify 中,但已在 Paypal 中注册
Posted
技术标签:
【中文标题】订单未出现在管理面板 shopify 中,但已在 Paypal 中注册【英文标题】:Order doesnt appear in admin panel shopify, but is registered in Paypal 【发布时间】:2021-08-10 19:37:26 【问题描述】:我在我的单个产品页面上添加了第二个自定义 Paypal 按钮,以便为我的用户关闭动态支付按钮。
我成功地做到了,按钮工作并收到了 Paypal 中的付款。
但是,我有一个问题是客户下的订单没有在管理面板仪表板(Shopify)中注册,所以我的物流
也能看到。我的代码在
product-template.liquid
是这样的
按钮代码
<div class="product-single__add js-product-buttons% unless product.available % product-single__add--sold% endunless %">
<button type="submit" name="add" class="c-btn c-btn--full c-btn--plus c-btn--% if section.settings.enable_payment_button %light% else %primary% endif % product-single__add-btn js-product-add">
<span class="js-product-add-text"> 'products.product.add_to_cart' | t </span>
</button>
% if section.settings.enable_payment_button %
form | payment_button
% endif %
</div>
% endform %
<!-- Set up a container element for the button -->
<!--<div id="paypal-button-container"></div> -->
</div>
% endform %
<!-- Set up a container element for the button -->
<div id="paypal-button-container"></div>
我的 javascript 是这样的
<script>
// Render the PayPal button into #paypal-button-container
paypal.Buttons(
// Set up the transaction
createOrder: function(data, actions)
return actions.order.create(
purchase_units: [
amount:
value: product.price | dividedby: 100.0
]
);
,
// Finalize the transaction
onApprove: function(data, actions)
return actions.order.capture().then(function(details)
// Show a success message to the buyer
alert('Transaction completed by ' + details.payer.name.given_name + '!');
);
).render('#paypal-button-container');
</script>
因为我是 Shopify 的新手,所以我应该在现有的 javascript 中实现一个事件或函数。
【问题讨论】:
【参考方案1】:Shopify 中的 PayPal 付款是预先构建的。因此,任何基于默认可用付款的自定义 PayPal 付款都将独立运作。因此,将错过订单履行。
您还可以在 Shopify 后台手动创建订单,以记录您在 Shopify 之外创建的订单或向您的客户发送发票。
请参考这个Link。
谢谢。
【讨论】:
以上是关于订单未出现在管理面板 shopify 中,但已在 Paypal 中注册的主要内容,如果未能解决你的问题,请参考以下文章
如何通过默认使用已在数据库中设置的值来防止“未定义索引”? [复制]