From e1180c92687437233ab1417ab46c50294a30a203 Mon Sep 17 00:00:00 2001 From: Reef Date: Thu, 25 Jun 2026 08:24:46 +0000 Subject: [PATCH] Dynamic pricing note: monthly shows 'Perfect for trial, termination any time', yearly shows 'Save money, less administration' --- index.html | 2 +- script.js | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 25a2ca6..a3c6c87 100644 --- a/index.html +++ b/index.html @@ -601,7 +601,7 @@
Instant setup, satisfied or reimbursed.
-

🔒 Secure Stripe checkout · Cancel anytime · Satisfied or reimbursed

+

🔒 Secure Stripe checkout · Cancel anytime · Satisfied or reimbursed

diff --git a/script.js b/script.js index 7837e1e..3bf932f 100644 --- a/script.js +++ b/script.js @@ -225,6 +225,12 @@ var si = 0, 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) {