Skip to content

Instantly share code, notes, and snippets.

@bgwaltney
Created January 16, 2019 15:35
Show Gist options
  • Select an option

  • Save bgwaltney/605020f0909eb5eaf6a0ee7be3eb4e6b to your computer and use it in GitHub Desktop.

Select an option

Save bgwaltney/605020f0909eb5eaf6a0ee7be3eb4e6b to your computer and use it in GitHub Desktop.
Tax Passthrough for Subscriptions
<form action="" method="POST">
<!--Make sure the name "tax_percent" stays the same. Make the value a number between 0 and 100-->
<input type="hidden" name="tax_percent" value="10"/>
<script
src="https://checkout.stripe.com/checkout.js" class="stripe-button"
data-key="pk_live_xxxxx"
data-amount="200"
data-currency="USD"
data-name="advancearly"
data-description="Beautiful monthly flowers for $2/mo!"
data-image="https://instapayments.s3.us-west-2.amazonaws.com/5bbe43056dbbb1705d37d1f2_advancearly"
data-label="Pay with Card"
data-panel-label="Subscribe for"
data-locale="auto">
</script>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment