How to not show buddy x-profile fields on bbpress if not filled in?
- 
		im trying to put buddypress x-profile fields in bbpress on loop-single-reply.php after the author role and avatar I have created one called Location my function to display it is <div class="bbp-usr-location"><?php if ( bbp_is_topic_anonymous() ) { echo "<br>Guest Post"; } elseif ( bbp_is_reply_anonymous() ) { echo "<br>Guest Post"; } else { $user_location = xprofile_get_field_data( 'Location', ( bbp_get_reply_author_id ( bbp_get_reply_id() ) ) ); echo 'Location: ' . $user_location; } ?></div>I just want to not display it if its not filled in on buddypress Any Help? 
Viewing 4 replies - 1 through 4 (of 4 total)
	
Viewing 4 replies - 1 through 4 (of 4 total)
	
- You must be logged in to reply to this topic.