To exclude Elementor or WordPress views from your heatmaps, you can use filters in your heatmap tracking code. Here's an example of how you can exclude views that contain "Elementor" in the URL path:
// Initialize your heatmap tracking code
var heatmap = new ClickTale.HotMap({
projectID: YOUR_PROJECT_ID,
recordingRatio: 0.5,
ignoreCanvases: true,
filter: function(url) {
return url.indexOf('Elementor') === -1;
}
});
In this example, the filter
function is used to exclude any URLs that contain the string "Elementor". You can modify this function to exclude any other views or pages that you don't want to include in your heatmaps.
Note that this example is using ClickTale's HotMap tracking code as an example, but the concept of using a filter to exclude certain views or pages can be applied to other heatmap tracking tools as well.