MyBB Community Forums

Full Version: Custom Profile Fields
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi I've added some Custom Profile Fields, for peoples addresses when then register, but I want them hidden on profile, However If I set them as hidden they don't show up on the register form, is it possible for them to show up whilst still being hidden?
No problem, made a code edit in member.php

Line 480:
$query = $db->simple_select("profilefields", "*", "editable=1", array('order_by' => 'disporder'));
		
Change to:
$query = $db->simple_select("profilefields", "*", "", array('order_by' => 'disporder'));
		

That's worked for me Smile