Hi Guys, ok the problem is in file wp_super_heatmap_js.js in “js” folder.
change : event.preventDefault(); on line 7
into
$(“a”).click(function(ev) {
ev.preventDefault();
});
event.preventDefault(); prevents click actions on ALL the element. by adding this function you can specify “a” element (hyperlink) to stop from its default action which allows for recording of the click on links; this action is later re-assigned… so just add this function and you should be ook.
i have also found another issue with # sign which make the page to go to top whenever my “anythingSlider” slides numbers are clicked on.
Tip : if you have a fast server reduce 1000 ‘s at the bottom of the page which delays the clicks on the links allowing for the recording of the click
Im not responsible for any problems caused. but i can tell you i use the plugin on pretty large sites and it seems ok atm =)