Subscription tax
-
Hello my favorite developer,
I am very pleased this plugin exists, I have one simple suggestion that would make subscriptions little more usable.
In USA and EU most of sellers must charge also VAT or sales tax, subscriptions on Stripe can be set to default prices like 100 EUR / month, but in reality real price is 100 + 23% VAT for Ireland example, it can not be charged as 123 EUR, because if you sell to other country, same subscription may become 125 EUR, so Stripe introduced tax_percent.
https://stripe.com/docs/subscriptions/taxes
// Set your secret key: remember to change this to your live secret key in production // See your keys here: https://dashboard.stripe.com/account/apikeys \Stripe\Stripe::setApiKey("sk_test_mg2HaEVE1whLOsw8cC7STu2B"); \Stripe\Subscription::create(array( "customer" => "cus_4fdAW5ftNQow1a", "plan" => "pro-monthly", "tax_percent" => 6.34, ));
Is there any way this plugin would use tax_percent feature taken from Woocommerce taxes in product price? It would make this absolute solution for subscriptions, I am willing to help testing.
Best regards, Mike
- The topic ‘Subscription tax’ is closed to new replies.