I've seen this asked many times.... and I just put it together for someone over at Infopop Community. Thought I would post here in case anyone ever comes searching for it.<br /><br />Problem: The "Welcome" PM's come from the first Admin account created, but you want it to come from a different Admin.<br /><br />Solution:<br /><br /><pre><font class="small">code:</font><hr><br />#################################<br />### In adduser.php, look for: ###<br />#################################<br /><br /><br />// --------------------------------<br />// Get the Administrator's Username<br /> $query = " <br /> SELECT U_Username<br /> FROM {$config['tbprefix']}Users<br /> WHERE U_Number = 2 <br /> "; <br /> $sth = $dbh -> do_query($query);<br /></pre><hr><br /><br />and change the 2 to the user number of the admin you want the Private Messages to come from.<br /><br />If you don't know the usernumber, you can find out by running this SQL command from your admin menu:<br /><br /><pre><font class="small">code:</font><hr><br />SELECT U_Number<br />FROM w3t_Users<br />WHERE U_Username = 'name'<br /></pre><hr><br /><br /><br />Substitute the username where I have name above.<br /><br />Also....if your database tables are using a different prefix than the defaul...substitute it for the w3t_<br /><br />That command will show you the user number.<br /><br /><br />Problem: You want to customize the text of the Welcome PM new users recieve.<br /><br />Solution:<br />To customize the text of that welcome PM, Edit this line:<br /><br />$ubbt_lang['WEL_MSG'] = "Welcome to our boards! Please take the time to edit your profile to take full advantage of all of our features.";<br /><br />of the adduser.php file, Inside your language files.<br /><br />/languages/english/adduser.php<br /><br /><img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />