Human overview · for understanding
Two fixes on fusiontables.hu/billiardasztal/: a nicer confirmation screen, and a way to trace every lead back to the ad that brought it · 2026-07-10
Two fixes on fusiontables.hu/billiardasztal/: a nicer confirmation screen, and a way to trace every lead back to the ad that brought it
Master summary — the gist in 30 seconds
Input: a screenshot of an ugly green confirmation box, and a request to track ad clicks. Output: a polished gold 'Köszönjük!' screen on every form, and hidden tracking data riding along on every submitted lead — visible in the email and the Google Sheet.
flowchart LR A["Visitor clicks<br/>a Google/Meta ad"] --> B["Lands on<br/>billiardasztal page"] B --> C["Fills in one of<br/>3 forms"] C --> D["Gold 'Köszönjük!'<br/>screen"] C --> E["Lead email +<br/>Google Sheet row"] E --> F["...now carries<br/>which ad it came from"]
Input: a form that already had a nice 'Köszönjük!' card designed and hidden in the code, but nothing ever told it to appear. Output: it now shows automatically the instant a submission succeeds, on the hero form, the bottom contact form, and the floating chat widget alike.
flowchart TD
A["Form submitted"] --> B{"CF7 marks the<br/>form '.sent'"}
B -->|before fix| C["Plain green<br/>WordPress box"]
B -->|after fix| D["Gold checkmark<br/>'Köszönjük!' card"]
Input: a visitor arrives via a Google or Meta ad link (which quietly attaches an ID like gclid or fbclid to the URL). Output: that ID rides along invisibly, gets saved even if the visitor browses around first, and lands in the lead notification email and the Google Sheet the moment they submit any form.
flowchart LR A["Ad click<br/>(?gclid=...)"] --> B["Saved in the<br/>visitor's browser"] B --> C["Visitor browses,<br/>maybe leaves and returns"] C --> D["Fills in a form"] D --> E["ID attached to<br/>the lead email + Sheet"]
Input: someone successfully submits any of the 3 forms. Output: a tagged signal ('generate_lead', labeled hero/cta/chat) fires immediately, ready for Norbi to wire into a Google Ads conversion action inside the tag manager — no further code changes needed on the site.
flowchart TD
A["Lead submitted"] --> B["'generate_lead' signal fires"]
B --> C{"Norbi's job:<br/>connect in Tag Manager"}
C --> D["Google Ads counts<br/>it as a conversion"]
C --> E["Ads can now optimize<br/>for real leads"]
Input: the tracking now live on the site. Output: a plain-language document listing exactly what to click in Google Ads and Tag Manager — creating the lead conversion action, and setting up call-forwarding so phone calls to +36 30 914 9330 count as conversions too.
flowchart LR A["Site tracking<br/>(done)"] --> B["Norbi: create Ads<br/>lead conversion action"] A --> C["Norbi: set up call<br/>forwarding number"] B --> D["Campaigns optimize<br/>on real leads"] C --> D