The idea is to prevent new users from registering and posting unwanted information in their biography. Author: Robert Chapin (miqrogroove) License: GPL Step 1: memcp.php Find if ($action == 'profile') { Add Code Below // Hack: Minimum Posts to Add a Biography define('MIN_POSTS_TO_ADD_BIO', 1); $bio = ''; $disablebio = (intval($self['postnum']) < MIN_POSTS_TO_ADD_BIO) ? 'style="display:none;"' : ''; Find $bio = postedVar('newbio', 'javascript', TRUE, TRUE, TRUE); Replace with if (0 == strlen($disablebio)) $bio = postedVar('newbio', 'javascript', TRUE, TRUE, TRUE); Step 2: Template memcp_profile Find $lang[textbio] Replace with $lang[textbio]