尽管有多种方法可以从客户那里收集在线付款,但是货到付款(COD)仍被认为是电子商务领域中最方便、最优选的付款方式。根据各种报道,代收货款占在线销售额的近60%。
如果您使用的是Shopify之类的领先电子商务平台,并希望向客户提供COD作为付款方式,则无需过多考虑,因为该平台允许您启用或禁用“货到付款”作为手动付款方式。但是,它本身不提供任何实现额外收费的货到付款的选择。意味着,您必须通过编写自定义代码来手动完成此操作。在您的帮助下,这是您可以做到的!
向Shopify添加COD手续费的脚本
如果要向Shopify商店添加一些COD手续费,则首先需要编写或复制以下脚本。
<span style="color:#f8f8f2"><span style="color:#eff0f9">window.ShopifyAnalytics.merchantGoogleAnalytics = function(){
if(document.URL.indexOf('?previous_step = shipping_method&step = payment_method']> = 0){
[] .forEach.call(document.querySelectorAll(“。order-summary__section--discount”),function(e){
e.parentNode.removeChild(e);
});
[] .forEach.call(document.querySelectorAll(“。applied-reduction-code__clear-button”),function(e){
e.parentNode.removeChild(e);
});
[] .forEach.call(document.querySelectorAll(“。field__input-btn-wrapper”),function(e){
e.parentNode.removeChild(e);
});
var shippingMethod = document.getElementsByClassName('review-block__content')[2] .innerText;
if(shippingMethod =='COD·Rs。100.00'){
[] .forEach.call(document.querySelectorAll(“ [data-select-gateway ='127248205']”“),函数(e){
e.parentNode.removeChild(e);
});
document.getElementById(“ checkout_payment_gateway_130854093”)。checked = true;
document.getElementById(“ checkout_payment_gateway_127248205”)。checked = false;
}
if(shippingMethod =='标准运送·免费'){
[] .forEach.call(document.querySelectorAll(“ [data-select-gateway ='130854093']”)),函数(e){
e.parentNode.removeChild(e);
});
document.getElementById(“ checkout_payment_gateway_130854093”)。checked = false;
document.getElementById(“ checkout_payment_gateway_127248205”)。checked = true;
}
}
};
</span></span>
转载自原文链接, 如需删除请联系管理员。
原文链接:如何在您的 Shopify 店铺中增加货到付款手续费?,转载请注明来源!
相关推荐