Hi, i will like to display some profile field at the members profile page, i know i can do that by adding the following code to members-header.php, but how can i put a link, so that if the field is not filled by the member it will just show let say “add your Country” and when click it will just go to the place where he can fill the field
<div id="member_profile">
<?php if ( $data = bp_get_profile_field_data( 'field=Country' ) ) : ?-->
<div class="profile_fields">
Country: <span><!--?php echo $data ?--></span></div>
<?php endif ?--></div>
regards