<!-- Отображение контента от наличия пользователя в определенной группе | https:
<script>
$(document).ready(function() {
if (window.localStorage.getItem('tilda_members_profile' + $('#allrecords').attr('data-tilda-project-id')) === null) {
$('#rec123451111, .uc-show').hide();
}
else {
if (window.localStorage.getItem('tilda_members_profile' + $('#allrecords').attr('data-tilda-project-id')).includes('Premium') == false) {
$('#rec123451111, .uc-hide').hide();
}
else {
$('#rec123451111, .uc-show').hide();
}
}
});
</script>