我把性別外掛掛上我的論壇之後...
出現了幾個問題...
1.在更改個人資料時..原本應該是 「外星人」卻變成「外星人&&」「男」也變成「男&&」 但是「女」 卻很正常 , ps.確定lang_main裡面沒錯..
2. 改性別時...不能變成外星人..似乎是被鎖住了...想問一下這事正常的嗎?
3.在觀看文章時,性別是外星人的不會出來,其他人的會出來
希望各位大大能告夠幫忙解決一下 , 感謝~
[問題]關於性別外掛....
版主: 版主管理群
應該是參考這篇的吧..
http://phpbb-tw.net/phpbb/viewtopic.php?t=14574
這兩段重改...
在上面紅色字的每個&後加上nbsp;\r
變成& nbsp;& nbsp;
注意....&跟nbsp;中間沒空格...
這是第一個問題...
第二第三個問題..都是正常的..
本來就這樣限定..除非再改...
ps....你的簽名檔有一個發文規則說..是給別人看的嗎...?
http://phpbb-tw.net/phpbb/viewtopic.php?t=14574
這兩段重改...
代碼: 選擇全部
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every theme you use).
templates/subsilver/admin/user_edit_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input class="post" type="text" name="interests" size="35" maxlength="150" value="{INTERESTS}" />
</td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_GENDER}:</span></td>
<td class="row2">
<input type="radio" name="gender" value="0" {GENDER_NO_SPECIFY_CHECKED}/>
<span class="gen">{L_GENDER_NOT_SPECIFY}</span>[color=red]&&[/color]
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>[color=red]&&[/color]
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>代碼: 選擇全部
#
#-----[ OPEN ]------------------------------------------
#
# (make sure to edit this file for every theme you use).
templates/subsilver/profile_add_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<input type="text" class="post"style="width: 200px" name="interests" size="35" maxlength="150" value="{INTERESTS}" />
</td>
</tr>
#
#-----[ AFTER, ADD ]------------------------------------------
#
<tr>
<td class="row1"><span class="gen">{L_GENDER}:</span></td>
<td class="row2">
<input type="radio" {LOCK_GENDER} name="gender" value="0" {GENDER_NO_SPECIFY_CHECKED}/>
<span class="gen">{L_GENDER_NOT_SPECIFY}</span>[color=red]&& [/color]
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>[color=red]&& [/color]
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
變成& nbsp;& nbsp;
注意....&跟nbsp;中間沒空格...
這是第一個問題...
第二第三個問題..都是正常的..
本來就這樣限定..除非再改...
ps....你的簽名檔有一個發文規則說..是給別人看的嗎...?

