Quote:
Originally Posted by rootnik
I'm wanting to only allow people who have filled out a certain optional profile field to be able to create or edit pages.
PHP Code:
<if condition="$show['createuserpagelink'] && $userinfo['field7']">
<tr>
<td class="$navclass[signature]" nowrap="nowrap"><a class="smallfont" href="userpage.php?$session[sessionurl]do=create">Create Your Userpage</a></td>
</tr>
</if>
<if condition="$show['edituserpagelink'] && $userinfo['field7']">
<tr>
<td class="$navclass[signature]" nowrap="nowrap"><a class="smallfont" href="userpage.php?$session[sessionurl]do=edit">Edit Your Userpage</a></td>
</tr>
</if>
That is what I have tried, and it doesn't want to work for me. (it doesn't show the link regardless)
Any suggestions?
|
Try this:
PHP Code:
<if condition="$show[createuserpagelink] AND $userinfo[field7]">
<tr>
<td class="$navclass[signature]" nowrap="nowrap"><a class="smallfont" href="userpage.php?$session[sessionurl]do=create">Create Your Userpage</a></td>
</tr>
</if>
<if condition="$show[edituserpagelink] AND $userinfo[field7]">
<tr>
<td class="$navclass[signature]" nowrap="nowrap"><a class="smallfont" href="userpage.php?$session[sessionurl]do=edit">Edit Your Userpage</a></td>
</tr>
</if>