Kirk Y |
07-19-2005 01:38 AM |
When you add a Custom Profile field, each user then has the ability to set his/her preference for that particular field in their UserCP. Use <if> conditionals to show/hide the code. Find your Category Icons' html in the forumdisplay template (I'm assuming this is where your Category Icons are.) and wrap the <if> conditionals around that specific html. The bbuserinfo['field15'] checks if the user viewing that template has field15 set to a certain option and if the user has Yes selected, the category icons will show, if the user has No selected, the category icons will not show. See code below:
PHP Code:
<if condition="$bbuserinfo[field15] == 'No'">
<!-- code if "Show forum category icons" is checked -->
</if>
The no IS case sensitive, so be sure you type it out right. If you need additional help, just ask.
|