• OzzModz is no longer taking registrations. All registrations are being redirected to Snog's Site
    All addons and support is available there now.

How to Hide Unactive settings in postbit

Ok for the first two do you have any unused profile fields?

For the third one, you need to comment out.
Code:
                !div class="imlinks">
                    {vb:raw post.icqicon} {vb:raw post.aimicon} {vb:raw post.msnicon} {vb:raw post.yahooicon} {vb:raw post.skypeicon}
               !/div>

Of course ! is supposed to be <
 
Yeah let me know how it goes. :)

hey ozzy, i think i found the issue.If any of the member don't add anything in there profile field.Then you'll see that blank box.Now after testing i closed it off with
Code:
 <!-- -->
which i know that's not the root. But it removed that empty box.Is there a conditional that i can use to remove that empty box unless a member fills in that field?
 
Try this:

PHP:
<vb:if condition="$post['fieldx']">
YOUR CODE HERE
</vb:if>

Change x to your profile feild ID.
 
Back
Top