Determine how many of your conversions originated from your Realforce campaigns. Conversion tracking is also used to enhance the targeting of your Realforce campaigns.
Once the Realforce script is loaded on your page the following functions will be available on the global scope.
window.adfenix.track(type)
Performs conversion tracking. The conversion tracking will then be used to perform advanced targeting and to create statistics on how many conversions were generated from your Adfenix campaign based on the utm tags present.
type
String. Mandatory. One of the following values:
bookappraisal
Used for forms/buttons where a visitor books a valuation / appraisal
bookshowing
Used for forms/buttons where a visitor books a showing / viewing
contactrequestclick
Used for buttons/hyperlinks where a visitor clicks for phone number & email
contactrequestsubmit
Used for forms/buttons where a visitor requests to be contacted
downloadinfoclick
Used for buttons/hyperlinks where a visitor downloads more information
downloadinfosubmit
Used for forms/buttons where a visitor submits information in order to download more information
Plain example
if (window.adfenix) {
window.adfenix.track('bookshowing');
}
jQuery button listener example
$( ".book-showing-button" ).click(function() {
if (window.adfenix) {
window.adfenix.track('bookshowing');
}
});
To get in contact with Realforce Support, please use the chat icon to submit your question!
Comments
0 comments
Article is closed for comments.