MyBB Community Forums

Full Version: template conditionals - hide homepage link in user profile if post count <
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
template conditionals - hide homepage link in user profile if post count < #

I was using a plugin for this, but it was screwing up user profiles in MyBB GoMobile

Thanks for the help
In member_profile template replace:
<td class="trow1" width="40%"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
with:
<if $memprofile['postnum'] > 3 then>
<td class="trow1" width="40%"><strong>{$lang->homepage}</strong></td>
<td class="trow1">{$website}</td>
<else>
<td class="trow1" colspan="2">Not enough posts to show hompeage.</td>
</if>

Or just change {$website} to:
<if $memprofile['postnum'] > 3 then>{$website}<else>Not enough posts to show hompeage.</if>
Used 2nd option. Worked out fine. Thanks much