Multiple billing cycles - quarterly

Is there no way to enable quarterly payments? It seems like I can only have a monthly/yearly toggle :slight_smile:

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 oh thank you, that’s amazing!
I just add the code to the footer of the page?

@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? :slight_smile:

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)


1 Like

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.
:green_heart: Much appreciated!!

2 Likes

Hey @Tim_ClimatEU,

I am so sorry I missed the other questions :slight_smile: Many thanks to @matthieu_chateau :blush:

1 Like

No worries :))

1 Like