Expand my Community achievements bar.

Join us for the next Community Q&A Coffee Break on Tuesday April 23, 2024 with Eric Matisoff, Principal Evangelist, Analytics & Data Science, who will join us to discuss all the big news and announcements from Summit 2024!
SOLVED

Help with best way to capture visits

Avatar

Level 3

 we have a page on our site, that is used for visitors to connect with a mortgage banker.. by the way the web site url for that page is  http://atlanticbay.com/search-mortgage-bankers/..  What I want to do is capture when ever a visitor clicks to view or contact one of the mortgage brokers.. I am hoping there is a way to do it without having to put a separate evar or prop on each one.. because there is over 200 brokers and not enough props and evars for that many...

I was trying to figure out a way that when a person is on http://atlanticbay.com/search-mortgage-bankers/ .. some rule would fire and capture the url of the broker the visitor selects..  for example if they select view on the broker they could be sent to http://atlanticbay.com/amieecarr/ or http://atlanticbay.com/amybatman/ etc. 
 or  if they select apply now on one of the brokers they would be sent to https://www.secureloandocs.com/app/36309094/loId/22202...   in this case if I could capture the 36309094...  from out of the url.. to get a count each time..someone is sent to 36309094.

 

Any suggestions? Would greatly appreciate your help with this.

Thanks

Darius 

1 Accepted Solution

Avatar

Correct answer by
Level 4

Hi Darius,

You could capture the broker name in a prop & eVar and you can set an event on the apply now click and set a different event on the broker page load. Then you could run an eVar report like the one below. You could also add a calculated metric for (Broker Apply Now / Broker View)

                          
broker name (eVar1)View Broker (event1)Apply Now Broker (event2) 
broker1104
broker262
broker341

 

Best,

@ryanpraski

www.ryanpraski.com

View solution in original post

2 Replies

Avatar

Correct answer by
Level 4

Hi Darius,

You could capture the broker name in a prop & eVar and you can set an event on the apply now click and set a different event on the broker page load. Then you could run an eVar report like the one below. You could also add a calculated metric for (Broker Apply Now / Broker View)

                          
broker name (eVar1)View Broker (event1)Apply Now Broker (event2) 
broker1104
broker262
broker341

 

Best,

@ryanpraski

www.ryanpraski.com

Avatar

Level 3

Ok so after looking further into this, This is what I am wanting to do

Please view — Atlanticbay.com/search-mortgage-bankers/..   If you click on any of the (VIEW ME) buttons you will see the HTML .. For each broker the HTM is similar to the following

<div class="col-lg-4 col-md-6 col-sm-6 mb-col-0 mbs-item" data-mb-id="20016" data-mb-name="Amiee Carr" data-mb-fname="Amiee" data-mb-lname="Carr" data-mb-city="Virginia Beach" data-mb-state="VA" data-mb-zip="23452"> <div class="mbs-item-inner"> <div class=“mb-img"><img src="http://d3k0pmp8tgrvhb.cloudfront.net/wp-content/uploads/20160302085148/amiee-carr-           hero.jpg" alt="Amiee Carr - Mortgage Banker" class="img- responsive mb-profile-img"> </div><h5 class="mb-name">Amiee Carr</h5> <p class="mb-title">Mortgage Banker</p> <p class="mb-loc">Virginia Beach, VA</p> <p class="mb-view"> <a href="http://atlanticbay.com/amieecarr/" class="btn-ghost-blue" target="_blank">VIEW ME</a> </p> <p class="mb-apply"> <a href="https://www.secureloandocs.com/app/36309094/loId/21961" class="btn-ghost-blue" target="_blank">APPLY NOW!</a></p> </div></div>

What I am hoping to do is the following..  

When a visitor goes to the site and clicks on any (VIEW ME) button, An event will fire to capture the Mortgage Bankers name and ID (The name and Id can be found in the first line in the div class, where it says (data-mb-id) and (data-mb-name) and will count each instance so that I can see how many times visitors are selecting each Mortgage Banker. I would also like to use an evar to track what happens on the next page when the visitor is sent to the mortgage banker page. I would like to know if they then click the (CONTACT ME) button or the (APPLY NOW) button, or do they scroll down the page and then select (CALCULATORS) button (FAQ) button (CREDIT FACTORS) button. Basically I would like to track everything they do on the mortgage banker page any button they click or link they click on. 

 

Also if they select the (APPLY NOW) button I would like to grab the app # in the url and the ID# at the end of the url.. See example below

<a class="btn-ghost-white btn-right" href="https://www.secureloandocs.com/app/36309094/loId/16359" target="_blank">APPLY ONLINE</a>

 

Thank you

Darius