Dynamic pricing note: monthly shows 'Perfect for trial, termination any time', yearly shows 'Save money, less administration'

This commit is contained in:
2026-06-25 08:24:46 +00:00
parent d65913e63e
commit e1180c9268
2 changed files with 7 additions and 1 deletions
+1 -1
View File
@@ -601,7 +601,7 @@
<div class="pcard-foot">Instant setup, satisfied or reimbursed.</div> <div class="pcard-foot">Instant setup, satisfied or reimbursed.</div>
</div> </div>
</div> </div>
<p class="pricing-cta-note">&#128274; Secure Stripe checkout &middot; Cancel anytime &middot; <strong>Satisfied or reimbursed</strong></p> <p class="pricing-cta-note" id="pricingCtaNote">&#128274; Secure Stripe checkout &middot; Cancel anytime &middot; <strong>Satisfied or reimbursed</strong></p>
</div> </div>
</section> </section>
+6
View File
@@ -225,6 +225,12 @@ var si = 0,
s.textContent = s.getAttribute("data-monthly-text"); s.textContent = s.getAttribute("data-monthly-text");
} }
} }
var ctaNote = document.getElementById("pricingCtaNote");
if (ctaNote) {
ctaNote.innerHTML = yearly
? "Save money, less administration"
: "Perfect for trial, termination any time";
}
} }
function setBilling(yearly) { function setBilling(yearly) {