
12-10-2005, 02:48 PM
|
 |
|
|
Join Date: Aug 2003
Location: Canada
Posts: 2,845
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by djsydeburnz
i would agree with all of that as well. the biggest problem was that everyone kept asking the same question regarding the xml file when vBulletin just needed to be changed to vbulletin.
i just cant seem to find any info on how to fix my user cp page. whenever you click on 'edit options' i get my header, the left navigation and blank page in the main area with this eror on the top:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /home/httpd/vhosts/syde-sho.com/httpdocs/forums/profile.php(2702) : eval()'d code on line 56
i have even uninstalled the mod, but dont know enough about php to know what this is telling me, or how to fix it.
|
THe Author replied to that before....search within the thread
Quote:
Yeah, theres a bit of a problem with the auto install routine, it tries to ammend the modifyoptions template for you, but unfortunately, messes it up a bit.
To add it in yourself in modifyoptions template
find:
Code:
<td><label for="cb_invisible"><input type="checkbox" name="options[invisible]" value="1" id="cb_invisible" $checked[invisible] />$vbphrase[use_invisible_mode]</label><input type="hidden" name="set_options[invisible]" value="1" /></td>
</tr>
</table>
</fieldset>
</if>
add under:
Code:
<!-- DONATIONS -->
<fieldset class="fieldset">
<legend><label for="cb_showdonor">My Donor Status</label></legend>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0" width="100%">
<tr>
<td>Shall We Show Your Donor Status To The Public?</td>
</tr>
<tr>
<td><label for="cb_showdonor"><input type="checkbox" name="showdonor" value="1" id="cb_showdonor" $checked[showdonor] />Show My Donor Status To The Public</label></td>
</tr>
</table>
</fieldset>
<!-- END DONATIONS -->
That will give users the option back to display their donor status or not.
|
|