You said: it loaded
it loaded
2:29 pm
Use the up and down arrow keys to move between messages.
it loaded
It's live — that's a genuinely nice-looking landing page. The gold-on-navy palette, the mandala/celestial motifs, the serif "SOULPRINT" wordmark — it feels premium, which is smart for something priced at an impulse-buy $1.99.
You're now fully deployed at soulprintmandala.com with SSL. Nice work.
What's left before this can actually take money:
soulprintmandala.htmlWant to send me the current soulprintmandala.html (or just the checkout/button section of it) so I can find the exact spot the Stripe link needs to go, and make sure the price displayed matches $1.99 everywhere?
Got it — that's your new Stripe payment link. Now let's wire it into the site.
Send me soulprintmandala.html (upload it here), and I'll:
REPLACE_WITH_YOUR_199_STRIPE_LINK placeholder (or wherever the old $5 link lives)https://buy.stripe.com/cNi9ATdom8OO5WAe9k2kw04Once you upload it I'll make the edit and confirm exactly what changed before you redeploy.
I found the spot — and also caught a bug while I was in there. Let me fix both.
Two things fixed:
199 now points to https://buy.stripe.com/cNi9ATdom8OO5WAe9k2kw04}; right after the object closed, which would've broken the entire script (nothing on the page would've worked — no purchases, no gallery, nothing)sendGiftCard() was still pointing at an old, separate Stripe link (28E7sL4..., presumably the old $5 gift price). Since everything's $1.99 now, I pointed it at the same new link so gift purchases charge the correct price too.Quick sanity check — every purchase path in the file now resolves to the same $1.99 link:
Clean — every button (main purchase, gift card buy, gift send) routes to the same $1.99 Stripe link, no leftover placeholders or dead references.
Drag this into Netlify to redeploy, then run through the full flow once live: hit "Get Your Mandala," confirm it opens Stripe at $1.99, and try the gift flow too. That syntax bug would've silently broken the whole page's JS, so good thing we caught it before this went out live.
That 404 — where did it happen? A couple of possibilities depending on what you clicked:
If it's the whole site (soulprintmandala.com) showing this 404:
That usually means the uploaded file wasn't named index.html. Netlify serves whatever's at the root as index.html — if you dragged in a file called soulprint.html, the homepage URL won't find it. Fix: rename the file to index.html before dragging it into Netlify (or into the Deploys tab).
If it's after clicking "Get Your Mandala" or a gift button:
That would mean the Stripe link itself is broken — worth double-checking the link is active in your Stripe dashboard (Products → make sure it's not archived/deactivated, and the payment link toggle is "on").
Which one happened — was it the homepage, or did you click a button on the site first?