The idea is to prevent new users from registering and spamming up the forum with signature links. Author: Robert Chapin (miqrogroove) License: GPL Step 1: memcp.php Find if ($action == 'profile') { Add Code Below // Hack: Minimum Posts to Add a Signature define('MIN_POSTS_TO_ADD_SIG', 3); $sig = ''; $disablesig = (intval($self['postnum']) < MIN_POSTS_TO_ADD_SIG) ? 'style="display:none;"' : ''; Find $sig = postedVar('newsig', 'javascript', ($SETTINGS['sightml']=='off'), TRUE, TRUE); Replace with if (0 == strlen($disablesig)) $sig = postedVar('newsig', 'javascript', ($SETTINGS['sightml']=='off'), TRUE, TRUE); Step 2: Template memcp_profile Find $lang[textsig]
Replace with $lang[textsig]