How can apply a setting to forum that only registered user can see links in topics and download a file?
[closed]
Download control
(5 posts) (4 voices)-
Posted 1 month ago #
-
On a forum by forum basis, you can't I'm afraid
Posted 1 month ago # -
I don't know how to do this in a post but maybe you can put it in your theme or sidebar like this:
Not logged in:
<? if (!bb_is_user_logged_in()) { echo 'Put here a text for not logged in members'; } ?>
Logged in:
<? if (bb_is_user_logged_in()) { echo 'Put here links or anything else for logged users'; } ?>
This will work in a theme, maybe this is a solution for your problem?
Posted 1 month ago # -
Thank you very much Jongeren
This code resolve my problem
Posted 1 month ago # -
Farhad, please start a new topic for your new issue.
Posted 1 month ago #
Topic Closed
This topic has been closed to new replies.