I'm trying to figure out how keep track of the incoming page a visitor initially entered through and show that as a link throughout the site so that they can return to that initial page if they are navigating around the site. Essentially the client's model is that they they're going to email links to a potential customer to a specific product page. They didn't build a navigation on the site with all their products (bad idea I know). But should the user leave that initial product page after entering through the email link and navigate to the contact page, homepage or wherever else, there's really no way unless they continually click back to find that initial product page they entered through.
So I'm using a PHP CMS (MODx specifically) and using Foxy Cart ecommerce. As such, I've got jquery and JSON at my disposal to work with. Unfortunately I have no idea where to start.
Here would be what I assume I need to do:
- Have an empty div that's waiting in a sense to receive the incoming link.
- Upon entering the product page, the jquery would "grab" the value in the h1 tag and grab the URL as well, store that info the empty div mentioned above.
Here's what I would envision it to be (please feel free to correct me if I'm wrong or if you have a better idea):
<h1>Product Name Here</h1>
<div class="records_first_page_entry_name"><a href="[+first_page_URL+]">[+product_name_here+]</a></div>
I would assume that these placeholders (namely [+first_page_URL+] and [+product_name_here+]) would be replaced by their respective values. Then I would need this div's values to be carried throughout all the pages of my site.
I hope I'm explaining myself correctly. Thanks!