Is there no way to enable quarterly payments? It seems like I can only have a monthly/yearly toggle
Hey @Tim_ClimatEU,
I would suggest the following workaround.
You can use this code to change the Monthly/Yearly toggle.
<script>
document.addEventListener("DOMContentLoaded", function() {
$('#planos-precos .year').text('example1');
$('#planos-precos .month').text('example2');
});
</script>
Then you will be able to create quarterly payments in Stripe and set the available options for the toggle.
P.S. please note that you should Replace the texts Example 1 for yearly and Example 2 for monthly options.
When creating Payment on Stripe you can edit Subscription schedule and select one of the available cycles or create custom one.
@Suzie just wanted to follow up - maybe it’s a stupid question, but where would I need to insert that code snippet to adjust to quarterly?
Thanks so much again!!!
Hi Tim,
Custom code header, at page level. Footer works too.
Don’t forget to get the right # (the id of your pricing block)
This is great, all worked! Thank you so much for taking the time.
I had messed up the id o the blocks the last time I tried.
Much appreciated!!
Hey @Tim_ClimatEU,
I am so sorry I missed the other questions Many thanks to @matthieu_chateau
No worries :))