Is it possible to limit what link types people can select when suggesting a link? For example, I want to have it so that unregistered users/guests can *only* suggest reciprocal links, in order to encourage reciprocal links. I want to have it so that only admins or mods can suggest regular links.
I thought I saw this setting in the admin area but can't seem to find it now.
You could use conditionals and write out the selector by hand in the template, along the lines of <IF {THISMEMBERUSERGROUP} is less than 3> <option value="recip">reciprocal</option> </IF> <IF {THISMEMBERUSERGROUP} is greater than 3> the current code with all ops in it </IF>
0/5
1
2
3
4
5
This thread is closed, so you cannot post a reply.
Comments on Limiting link types on suggested links
Member
Usergroup: Customer
Joined: Nov 26, 2005
Location: MI, USA
Total Topics: 11
Total Comments: 35
Is it possible to limit what link types people can select when suggesting a link? For example, I want to have it so that unregistered users/guests can *only* suggest reciprocal links, in order to encourage reciprocal links. I want to have it so that only admins or mods can suggest regular links.
I thought I saw this setting in the admin area but can't seem to find it now.
developer
Usergroup: Administrator
Joined: Dec 20, 2001
Location: Diamond Springs, California
Total Topics: 61
Total Comments: 7868
You could use conditionals and write out the selector by hand in the template, along the lines of
<IF {THISMEMBERUSERGROUP} is less than 3>
<option value="recip">reciprocal</option>
</IF>
<IF {THISMEMBERUSERGROUP} is greater than 3>
the current code with all ops in it
</IF>