Is there a way to hide the columns on the Dashboard? I do not want to disable the plugins just hide those columns and not have the dashboard table so WIDE!
![]()
Is there a way to hide the columns on the Dashboard? I do not want to disable the plugins just hide those columns and not have the dashboard table so WIDE!
![]()
Hi Paul,
No, there isn’t any feature for this, but if this is for Matomo On-Premise, that’s typically a plugin that you can create in no time with Claude Code and get this fixed.
OK, thanks - I shall give it a go and report back here!
/* Matomo All Websites Dashboard — custom column visibility
* Deployed to: /srv/docker/matomo/data/html/misc/user.css
* Loaded via: plugins/Morpheus/templates/layout.twig (line 29)
* To reverse: delete misc/user.css and remove the <link> line from layout.twig
*/
/* === Hide AI Chatbots Requests column === */
/* KPI summary card at the top (identified by icon-admin-platform) */
.kpiCardContainer > div:has(.icon-admin-platform) {
display: none;
}
/* Table column (4th column: Website, Visits, Pageviews, AI Chatbots...) */
.sitesTable thead th:nth-child(4),
.sitesTable tbody td:nth-child(4) {
display: none;
}
/* === Hide Evolution columns (last 2: % trend + sparkline) === */
.sitesTable thead th:nth-last-child(1),
.sitesTable thead th:nth-last-child(2),
.sitesTable tbody td:nth-last-child(1),
.sitesTable tbody td:nth-last-child(2) {
display: none;
}