Makestation

Full Version: MyBB - display content on profile only if ? is filled
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I can't seem to work out how to only display certain content only if multiple custom profile fields have been filled in.

The custom profile fields are:
- Ad BG Image
- Ad Name(1 word)
- Ad link

if all of these fields are filled in, I want it to show the content, however if only 1 or 2(or none) of them are, I don't want it to display. I know this can be done in PHP, but I suck at that, haha, so I need some guidance.

Basically it would be something like this(I think):
PHP Code:
<?php

if (**ALL FIELDS ARE FILLED IN** == true?) {
 
   then display the content
} else {
 
   dont display the content
}

?>

The content that I want putting in there, is as follows:
Code:
<div class="ui dimmable image" id="dim" style="float:right;margin-top:20px;">
        <div class="ui dimmer">
            <div class="content">
                <div class="center">
                    <div class="ui inverted button">SOCIAL+</div>
                </div>
            </div>
        </div>
        <img src="http://i.imgur.com/EkXHK5R.png" class="ui image rounded">
    </div>
</div>
I think that has been suggested elsewhere as well. Not sure it's really possible without a plugin, but I could be mistaken. That would be a silly thing to have to do a plugin for.
Wouldn't you be able to do it with the php in templates plugin?