20.01.2026, 08:43
Hi,
Is there any way to hide butons "Graph/Data" and "Export trend data" in the trends page (not using iframe) dependeing on which user is logged?
I've tried something like this, but doesn't work:
Is there any way to hide butons "Graph/Data" and "Export trend data" in the trends page (not using iframe) dependeing on which user is logged?
I've tried something like this, but doesn't work:
Code:
if (window.Globals && Globals.user === 'user') {
$('.trends .btn-group').addClass('hide');
$('.trends .show-export').addClass('hide');
}