Re: Profile Fields Questions
It’s really just tjis that I need for problem #1:
<?php if (custom_xprofile('About me') ) : ?>
<h3>About me:</h3>
<?php custom_xprofile('About me'); ?>
<?php endif; ?>
If the About me field is filled, it should display
<h3>About me:</h3>
if it is not filled in, it shouldn’t display the h3 heading.
And with the above snippet, it always displays it. It’s the conditional statement that I cannot get right.