貝寶購物車的運費之一 (One of delivery charge for paypal shopping cart)


問題描述

貝寶購物車的運費之一 (One of delivery charge for paypal shopping cart)

有沒有一種方法可以使用貝寶購物車為多件商品設置一個運費。我有一個網站出售當地小型博物館的明信片,但我只能為每件不同的物品加收運費,或者根本不加收運費。交貨是65便士,所以如果有人買;6 x "a" 明信片有一張運費 65 便士。問題是當有人訂購時;1 x“a”明信片 1 x“b”明信片 1 x“c”明信片 1 x“d”明信片 1 x“e”明信片 1 x“f”明信片 運費為 3.90 英鎊,對於 6 張明信片來說太高了. 有沒有辦法將任意數量的變體的運費設置為 65 便士?感謝任何可以提供幫助的人。


參考解法

方法 1:

Ok, Worked it out! I think I am just going to have to base the shipping on a total order value and not specify it at all in my coding... Heres what I did in case anyone else finds this with the same problem.

Login to Paypal account. Click on the "Profile" tab near the top of the page and under "Selling Preferences" click on the "Shipping Calculations" link and follow the steps to set up for instance £0.01 ‑ £9.99 delivery £1.15, £10.00‑£14.99 delivery £1.95 etc etc etc.

Thanks for your help everyone!!

方法 2:

I think PayPal has a value called "shipping_1" and "shipping_2", depending on the platforn you just need to override these values, we used something like this for our PHP form

<input type="hidden" name="shipping_1" value="<?php echo $order‑>delivery ‑ $order‑>discount_delivery ?>">

方法 3:

This link says you can do this by setting

Setting the Shipping Charge for the Entire Cart

Use the shipping variable without additional shipping2 variables to specify the shipping charge for the entire transaction. The value of shipping is used for the shipping charges, regardless of the merchant’s profile‑based shipping rates and rate basis.

Also see https://cms.paypal.com/us/cgi‑bin/?&cmd=_render‑content&content_ID=brc/three_common_shipping_issues

(by DanDanCubed EyeJoseK)

參考文件

  1. One of delivery charge for paypal shopping cart (CC BY‑SA 2.5/3.0/4.0)

#shopping-cart #paypal






相關問題

PHP PDO - 無法序列化或反序列化 PDO 實例 (PHP PDO - cannot serialize or unserialize PDO instances)

Prestashop 在註冊表單中添加額外字段 (Prestashop Add extra fields to registration form)

接近購物車存儲,帶有 sessionID 的數據庫 (Approach shopping cart storage, database with sessionID)

購物車不工作,我想哭 (Shopping cart won't work and I want to cry)

如何在 UITableView 中使用 dequeueReusableCellWithIdentifier 快速管理購物車? (How to manage shopping cart in UITableView with dequeueReusableCellWithIdentifier in swift?)

如何區分 Rs 和 % 值? (How to differentiate Rs and % values?)

貝寶購物車的運費之一 (One of delivery charge for paypal shopping cart)

ZenCart 中的優惠券問題 (Coupon problem in ZenCart)

PAYPAL 貨幣不起作用 (PAYPAL currency is not working)

RESTful 購物車網絡服務 (RESTful Shopping Cart web service)

Gravity Form 不適用於結帳頁面 (Gravity Form doesn't work with Checkout Page)

帶有對象的數組,單擊按鈕後增加/減少對像中的值之一 (Array with objects, increasing/decreasing one of the value in object after click on button)







留言討論