Validator is now v3.2.1, but it's a transparent upgrade, so it shouldn't affect anything here.
Conversion tracking code
-
Hi!
I want to keep track of the effectiveness of my marketing campaigns through conversion tracking, and, for us a conversion is a new user on the forum.
Where should I place a tracking code once a customer registers?Thanks for your help!
Chris -
Looks like we would have to add a new query param like we have with
loggedIn
so you can add some custom JS to check it and do tracking. -
@baris Thanks for your answer, would you include it in your roadmap please?
thanks!
-
https://github.com/NodeBB/NodeBB/commit/54b12119e930f95717c6a9929983d260988cb790 let me know if that works for you.
-
Hi there !
I have the exact same problematic.
We want to track the fact that the user has successfully confirmed his email after inscription.
I identified the/confirm/
page being the page where the user is directed after his email confirmation, so i can add code like this one in the HEAD section :if (document.location.pathname.indexOf("/confirm/") === 0) { fbq("track", "CompleteRegistration"); }
But it appears to be a very brittle approach as i don't know if the confirmation was really successfull.
So, is your commit a way to know that the registration was successfull via theregistered
param ?And.. is there a standard way in the admin panel to add custom code at the end of the page and preferrably after jQuery is loaded to inspect the page content ?
-
My commit adds a registered param to the url after a successful registration. You should be able to add jquery into custom JS tab in the ACP and it should just work.
-
@baris : Thanks !
I was still running nodebb v1.6.1 so i was unable to find the place you mentioned in the ACP.
But after a (difficult) upgrade to v1.7.1, i can now clearly see it :That should do the job !
-
This post is deleted! -
This post is deleted!