Questions tagged [tax-rate]

7 questions
22
votes
4 answers

Tax Rate in new Stripe Checkout

I've implemented the new Stripe Checkout on my NodeJS server, but I cannot specify the Tax Rate for Invoicing. As per my understanding Tax Rates should be specified in the Payment Intent API. Fact is that the new Checkout automatically creates a…
r4id4
  • 5,877
  • 8
  • 46
  • 76
17
votes
3 answers

Stripe Checkout - Create Session - Apply Tax Rates on subscriptions

I'm trying to set up the new Stripe Checkout Create session. I'm not able to set the tax rate on the subscription during the session creation as the subscription is automatically created by Stripe. I have set up a Tax rate on the dashboard with the…
Shankar ARUL
  • 12,642
  • 11
  • 68
  • 69
2
votes
1 answer

Get and display the tax rate on Woocommerce single product pages

I'm trying to find a way how I could only display the Tax rate (16% or 7%), which a product has. Basically the idea is that there should be a static tax like. The price includes 16% Taxes or The price includes 7% Taxes So the percent rate should…
p_e_88
  • 1,029
  • 11
  • 24
2
votes
1 answer

Get tax rate separately for every cart and order items in Woocommerce

I'd like to modify the cart display (and later the invoice) so that there is another column showing the tax and tax rate for each product. I have not found a function or a getter for the tax rate as a number, only the name, with…
Mister Woyng
  • 391
  • 2
  • 16
0
votes
1 answer

Is setting tax rates to Client only Stripe Checkout (no Sessions) Subscription possible?

I'm trying to implement Stripe Checkout without server integration (client-only). It seems like I cannot set tax rates when I call redirectToCheckout. I've searched similar questions like the following but they aren't client-only and are using…
tkrhgch
  • 343
  • 1
  • 4
  • 14
0
votes
1 answer

Get the label of a product tax rate in WooCommerce

I need to find out the label of the tax rate in WooCommerce. With the following code I can find out the tax rate: $taxclass = $product_variation->get_tax_class(); $tax_rates = WC_Tax::get_rates( $taxclass ); if (!empty($tax_rates)) { $tax_rate…
hamirom
  • 49
  • 3
  • 11
0
votes
0 answers

Adding tax rates on InvoiceIntem

Environment : NodeJS Language : Typescript I am trying to add Tax Rates to my InvoiceItems, but it seems that the Stripe package does not follow the API doc. Here is my code : newInvoiceItem = await this.stripe.invoiceItems.create({ …