---
title: Deshabilitar mapas de calor y grabaciones de sesiones para Matomo
url: "https://www.seopress.org/es/soporte/hooks/deshabilitar-mapas-de-calor-y-grabaciones-de-sesiones-para-matomo/"
lang: es
updated: 2021-09-29
hook_name: seopress_matomo_no_heatmaps
required_version: 4.2
---

# Deshabilitar mapas de calor y grabaciones de sesiones para Matomo

- **Hook name:** `seopress_matomo_no_heatmaps`
- **Required version:** 4.2

```php
function sp_matomo_no_heatmaps($html) {
	$html = "_paq.push(['HeatmapSessionRecording::disable']);\n";
	return $html;
}
add_filter('seopress_matomo_no_heatmaps', 'sp_matomo_no_heatmaps');
```

Source: [https://gist.github.com/wp-seopress/a30d64d1db46bcbaf0e3b43cc2802a5b](https://gist.github.com/wp-seopress/a30d64d1db46bcbaf0e3b43cc2802a5b)



