
05-16-2011, 04:03 PM
|
 |
|
|
Join Date: Sep 2005
Location: Montreal, QC
Posts: 85
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by CharlieDelta
Hi Bazi I have another question.
How would I go about changing the location of the PSN Portable drop down? Rather than in the 'edit settings' I would like to have it in 'general settings' because I have some custom categories.
Thanks.
|
Open the xml file and:
Quote:
Find:
Code:
profile_updateprofile
Replace with:
Code:
profile_updateoptions
|
Quote:
Find:
Code:
profile_editprofile_start
Replace with:
Code:
profile_editoptions_start
|
Quote:
Find:
Code:
$psnversion_userfield = $templater->render();
$find = "<!-- end if custom fields -->";
$vbulletin->templatecache['modifyprofile'] = str_replace($find, '<div style="padding:0 15px;">'.$psnversion_userfield.'</div>'.$find, $vbulletin->templatecache['modifyprofile']);
Replace with:
Code:
$template_hook['usercp_options_messaging'] .= $templater->render();
|
Import the xml again.
|