VAT Value for PayPal
I need help with the PayPal interface.
In classipress version 3, I calculated the VAT and sent it to PayPal as the "TAX" parameter.
In version 4 I tried to do the same, but unfortunately it doesn't work.
Problem:
The prices on my classipress site are gross.
But I want the net value and VAT to be passed on to PayPal so that VAT can be recorded separately in PayPal.
Can someone tell me how to do that in Classipress 4?
Previous way:
$ Net = $ gross / 119 * 100
$ Tax = $ gross - $ net
this :: TAX -> $ tax
this :: Value -> $ net
Thank you