Paypal not calculating shipping after discount code (big cartel) - paypal

When checking out from big cartel, it directs me to paypal however when I add the discount code in bigcartel in the paypal summary the shipping is determined from the base price not after the discounted price.
Can someone help me please?

it sounds like this could be an issue with your Big Cartel or PayPal shipping settings. This site is a Q&A site for programmers, so you'll have the best luck with emailing Big Cartel support. http://bigcartel.com/contact

Related

Bigcommerce add processing fee on checkout

I am in the process of adding an additional credit card processing fee of 2.5% across the entire bill upon check out in a bigcommerce store. My question is: Can I manipulate the grand total as it seems I cannot change it or is there any other way?. Also would adding a line items work? Or if you have any other idea please let me know. There is not much information that is found in BC site
So you actually have a couple of no code options in setting this up!
You could use the native Handling Fee (percent or flat rate) to add a fee to the shipping, which I would assume you'd do more than 2.5% if you chose this route. Or you can look at creating a custom tax to add to the checkout.
We do have an Idea in our Ideas Portal that I invite you to review that is to support transaction fees on the order. If you are in support of this idea, please upvote it to relay that feedback to our Product teams! :)

paypal checkout 2.0 wrong exchange rate, any ideas?

I am integrating paypal checkout 2.0 on my website, but when I enter my credit card to test I realize that paypal does an incorrect currency conversion from any currency to dollars, which ends up giving the client a price lower than what you are actually going to pay, please update the exchange rates on a daily basis to avoid this error
See the picture! ↓↓↓↓ to understand the problem! ↓↓↓↓
ok, I found my problem, when passing the api to real mode the currency exchange is fixed, I hope it can help someone XD

How do I set up Paypal automated checkout?

We have our own custom products that we sell. We are entering into a partnership where someone will be using their website to send customers to us. Their customers will pay with our Paypal button on their website, once we receive payment we ship out the product and pay a portion of the profits to them. On paper this sounds good but we have no idea how to execute it. How will we know the sale came from their website? How do we set this up without them needing access to our Paypal account?
Any ideas on where to start? Thank you, it's much appreciated!
Please, hire a developer to set this up for you. As it is, you're basically asking people to complete a project for you completely for free - that isn't what this site is about.

How to Use PayPal to Charge a Commission

I have a plugin in wordpress like ebay where people can post their products and sale their products and i manage to save paypal response in my database. may i know how can I configure Paypal so that when someone sells something I get a percentage commission. I have searched everywhere, I haven't found anything. tnx
You need to become a paypal partner, then you can put your BN code into the PayNow button you generate.
https://www.paypal-marketing.com/emarketing/partner/na/program/index.html

Currency exchange rates for paypal

Does anyone know a way to get the currency exchange rates for paypal?
We have custom shopping cart and use Paypal (Website Payments Standard) to handle payments.
Our 'home' currency is Euro, but we would like to present our customers the option to pay in different currencies (USD, CAD, AUD and GBP).
PayPal offers the option to:
a) automatically convert our Euro quoted prices to, for example, USD upon checkout
b) checkout in USD directly
With option a):
We get paid in Euro, the customer pays for the currency exchange (good).
The customer does not know what he/she is going to be charged in USD until checkout. (bad)
With option b)
The customer pays in USD, then the currency is converted into EUR and we pay the the currency exchange.
The customer never has to worry about the different currencies (excellent)
We do not know the exchange rate PayPal is going to use so we cannot quote the correct prices to our customer (showstopper)
So my question is:
Does anybody know a way to get the PayPal exchange rates?
or
Does anybody know how to make a good estimate?
Update:
PayPal updates it's exchange rate 2 times a day. (at least, that is what they state). They use the Interbank Exchange Rate provided by ??? and add a 2.5% spread above this rate to determine their retail foreign exchange rates.
Unforunately, there the Interbank Exchange Rates vary from source to source and from minute to minute.
We have been monitoring the PayPal exchange rates and cross referenced them with the Official reference rates provides by the European Central Bank. the results vary widely, somewhere from 1 to 6 ! percent...
https://www.paypal.com/us/cgi-bin/webscr?cmd=_convert-currency-withdrawal is a (needs login) page on Paypal where you can perform currency conversions at Paypal's rates.
I just found this:
https://www.x.com/thread/38451 (This link is now broken)
so it look like there is something you could use
https://www.x.com/docs/DOC-1400 (This link is now broken)
https://www.x.com/docs/DOC-1401 (This link is now broken)
I also found this
http://apipay.net/easyapi/index.php?sid=paypal&id=nvp_adpay&ac=convertcurrency (This link is now appears to be broken also)
and there is someone that already posted a question about that
PHP example for PayPal Adaptive Payments ConvertCurrency API
Regarding getting a good estimate; PayPal says here that they base their rate on the "Interbank Exchange Rate" and that "Customers may use these rates as a reference".
However they of course go on to say that these rates are not guaranteed, and if you want the precise rate you need to see what rate they apply in the transaction.
I am not aware of any way of obtaining the precise rate programmatically.
I suppose you could make your own payment of $0.01 every day and observe the exchange rate applied - but even that assumes they only update their rate every day.
I contacted their customer service and they explained, that at least in my region, they added 3.5% over the XE.com exchange rates. I was able to hand this to my accountant and use it as evidence of a tax-deductible business expense.
Their exchange rates are ~10% off the daily spot rates in the currencies I use (THB/USD). And although I have USD bank accounts they refuse to transfer USD to my USD accounts. Not sure if that is their policy for all countries / all currencies though, but for THB/USD they are inflexible.
Another thing to be aware of when using paypal - their "seller protection" is limited depending on what you sell and through what channels. In other words, you need to do a certain amount of fraud checking yourself to avoid shipping to customers who have used stolen credit card #s.
As you say, they base the "PayPal exchange rate" on the "recent currency conversion rate". In my experience, they add 3-4%.
The only place I found to get the PayPal exchange rate is here but it needs you to be logged in.
I've created a publicly visible Google doc that lists the historical rates.
This allows you to track the PayPal exchange rates so that you know when best to withdraw or transfer your money. Please contribute to the data by adding today's rates into this form.
If you are strictly interested in conversion from and to Euro, the European Central Bank has a public (and free) xml document that is updated daily:
http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml
Parsing it is easy:
$XML=simplexml_load_file("http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml");
foreach($XML->Cube->Cube->Cube as $rates){
if($rates["currency"] == 'USD'){
$rate = ''.$rates["rate"];
// do your thing with it here
}
}
I found paypal adaptive payment service to integrate currency exchange rates on website but it is not working correctly on live account. You can go through the details from the link https://developer.paypal.com/webapps/developer/docs/classic/products/adaptive-payments/
Well, the following service should be useful for the conversion: http://rate-exchange.herokuapp.com/. Our company uses this for many live projects including an Chrome extension which seems running so far.