请问这个怎么删除
Re: 请问这个怎么删除
没有必要吧。
打开styles/prosilver/template/ucp_prefs_personal.html
找到
全部删除
打开styles/prosilver/template/ucp_prefs_personal.html
找到
Code: Select all
<dl>
<dt><label for="timezone">{L_BOARD_TIMEZONE}:</label></dt>
<dd><select name="tz" id="timezone" class="autowidth">{S_TZ_OPTIONS}</select></dd>
</dl>
<dl>
<dt><label for="dst1">{L_BOARD_DST}:</label></dt>
<dd>
<label for="dst1"><input type="radio" name="dst" id="dst1" value="1"<!-- IF S_DST --> checked="checked"<!-- ENDIF --> /> {L_YES}</label>
<label for="dst0"><input type="radio" name="dst" id="dst0" value="0"<!-- IF not S_DST --> checked="checked"<!-- ENDIF --> /> {L_NO}</label>
</dd>
</dl>
<dl>
<dt><label for="dateformat">{L_BOARD_DATE_FORMAT}:</label><br /><span>{L_BOARD_DATE_FORMAT_EXPLAIN}</span></dt>
<dd>
<select name="dateoptions" id="dateoptions" onchange="if(this.value=='custom'){dE('custom_date',1);}else{dE('custom_date',-1);} if (this.value == 'custom') { document.getElementById('dateformat').value = default_dateformat; } else { document.getElementById('dateformat').value = this.value; }">
{S_DATEFORMAT_OPTIONS}
</select>
</dd>
<dd id="custom_date" style="display:none;"><input type="text" name="dateformat" id="dateformat" value="{DATE_FORMAT}" maxlength="30" class="inputbox narrow" style="margin-top: 3px;" /></dd>
</dl>
Re: 请问这个怎么删除
这个删掉可能会有问题吧? 因为有些参数在下一步可能要用的, 最好是用一个<div>给框起来, 然后display=none, 用户那边就看不到了
Re: 请问这个怎么删除
IOsetting 说的是,我没考虑到这个IOsetting wrote:这个删掉可能会有问题吧? 因为有些参数在下一步可能要用的, 最好是用一个<div>给框起来, 然后display=none, 用户那边就看不到了

不过我想如果在后台设置了默认格式的话,应该不会有问题吧