'
Hi @Alexandra Prinz ?,
There aren’t permissions for the visibility of these widgets. However, it is possible using the inSidedDataObject:
For instance if you applied some styling to the leaderboard widget so that it doesn’t display by default, you could add some code in Control → Customization → Third-Party Scripts such as:
<script>
if (inSidedData.user.role != ''roles.guest'') {
// Make the widget visible
$(''.qa-widget-leaderboard_points'').removeClass().removeAttr(''style'');
}
</script>
This would make the widget visible only if the primary role of a user is not a guest.
If you need any help with this please let support@insided.com know and we’ll be happy to help.
Thanks!
'