Guest:
Is there a way I can prevent the following info from being published on a user's profile?
Refer to $dbUserShema setting and disable (comment) or remove the fields you would like to avoid to display. For example:
$dbUserSheme=array(
'username'=>array(1,'username','login'),
'user_password'=>array(3,'user_password','passwd'),
'user_email'=>array(4,'user_email','email'),
//'user_icq'=>array(5,'user_icq','icq'),
//'user_website'=>array(6,'user_website','website'),
//'user_occ'=>array(7,'user_occ','occupation'),
//'user_from'=>array(8,'user_from','from'),
'user_interest'=>array(9,'user_interest','interest'),
'user_viewemail'=>array(10,'user_viewemail','user_viewemail'),
'user_sorttopics'=>array(11,'user_sorttopics','user_sorttopics'),
'language'=>array(14,'language','language'),
'num_topics'=>array(16,'num_topics',''),
'num_posts'=>array(17,'num_posts',''),
'user_custom1'=>array(18,'user_custom1','user_custom1'),
'user_custom2'=>array(19,'user_custom2','user_custom2'),
'user_custom3'=>array(20,'user_custom3','user_custom3')
);
Also you may remove those fields from the database table. All proper indexes of the left fields must be kept then. Refer to "Determine Fields" tool for knowing them out.
About adding a new field read:
Extending miniBB's User Profile with the New Field(s)