Hi, guys! :)
I hope you will help me to solve my issue with dynamic remarketing, super cool feature!
My website was made with Single Page Application principle, implemented using heavily AngularJS. My website is specializing on selling railway tickets.
And I want to add dynamic remarketing for people who have already searched for trains by Departure station and Arrival station. So every time User clicks on "Search Trains" button I want to inform Google that this client searching let's say tickets from London to Paris. For this I have a snippet of code which is just a first line of my onclick handler:
$window.google_trackConversion({
google_conversion_id: 958230987,
google_custom_params: {
dynx_itemid: stationCodeFrom + '_' + stationCodeTo
},
google_remarketing_only: true
});
In my index.html I also have linked this script inside of HEAD
<script type="text/javascript" src="
http://www.googleadservices.com/pagead/conversion_async.js" charset="utf-8"></script>
Of course I have feed of all kind of train destinations uploaded in my compaing.
But according to analytics, according of how many dynamic advertisemnt were shown to users it seems not to be working at all. Because I have at least 1 000 unique users which clicks on "Search Trains" buttons, and the amount of Dyn advertisemnt is only like 5-20.
What am I missing ?