@PitaJ said in Followers - require my permission before users start following me:
....... as it won't stop anything.
Exactly. Besides threads/posts submitted on our private categories are not displayed on my profile.
Cheers
With the navigation items, you can set to logged in users, admins, etc but you cant select display only to guests.
have a donate page for access to the forum, but i only want it shown to guests, not logged in users. and no option for that exists.
You can probably use the following until that option is built, place it in your custom js section.
$(window).on('action:ajaxify.end', function() {
$('#main-nav a[href="/donate"]').parent().toggleClass('hidden', !!app.uid);
});
This will hide the /donate
navigation item for logged in users but show it for guests.
thanks i will give it a whirl
Instead of app.uid
you need to use app.user.uid