1 頁 (共 1 頁)

[問題][外掛]性別123c(for204)

發表於 : 2003-08-05 02:08
io_oi
問題外掛:[外掛]性別123c(for204)
參考連結:http://phpbb-tw.net/phpbb/viewtopic.php?t=14574
使用版本:phpBB 2.0.4
網站位置:(sorry~)

測試系統:自機架設 WinXP-P SP1 + RaidenHTTPD 1.0.48 + PHP 4.2.3 + MySQL 3.23.57
測試網路:固定IP SEEDNet ADSL 1536/384

狀況描述: 個人資料&後台個人資料並未正確顯示圖示\r
資料庫建立成功[外掛]性別123c(for204)安裝了PART1以及PART2還裝了如果個人資料內的性別文字也要改用圖示的話~
並沒有裝如果要限制除了系統管理者與會員本身以外的會員不能觀看的話
重裝兩次情形都是一樣...

個人資料&後台個人資料並未正確顯示圖示
圖檔
此部分顯示正常
圖檔

已安裝外掛
[MOD]如何加入"竹貓"的橘色外框?!
[MOD]閃光會員名稱進階版

發表於 : 2003-08-21 00:03
allen0007
我裝完之後也是如此~~請問這要如何解決?

發表於 : 2003-08-21 00:08
H.T.Demon
找找MOD有修改到的tpl 因為當時我也有遇到,後來找到tpl就把那段去掉了

發表於 : 2003-08-21 00:22
allen0007
H.T.Demon 寫:找找MOD有修改到的tpl 因為當時我也有遇到,後來找到tpl就把那段去掉了
我知道哪裡有問題了,改2個檔案即可,就不會再出現那個&&的東西了
第1個檔案
[php]
#
#-----[ 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>&&
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>&&
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
[/php]
修改為\r
[php]
<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>
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
?>[/php]

第2個檔案
[php]
#
#-----[ 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>&&
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>&&
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
[/php]
修改為\r
[php]
#
#-----[ 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>
<input type="radio" name="gender" value="1" {GENDER_MALE_CHECKED}/>
<span class="gen">{L_GENDER_MALE}</span>
<input type="radio" name="gender" value="2" {GENDER_FEMALE_CHECKED}/>
<span class="gen">{L_GENDER_FEMALE}</span></td>
</tr>
[/php]

發表於 : 2003-08-21 03:16
io_oi
謝謝allen0007
這個我有找到並改過
可是這裡應該要顯示圖示卻沒有顯示
這個我就看不出端倪了.....

發表於 : 2003-08-21 12:22
allen0007
io_oi 寫:謝謝allen0007
這個我有找到並改過
可是這裡應該要顯示圖示卻沒有顯示
這個我就看不出端倪了.....
是喔~~還是說這個外掛在個人資料裡原本就只有文字顯示
這我也不了解,因為沒有Demo可以看

發表於 : 2003-08-21 16:44
H.T.Demon

發表於 : 2003-08-22 23:26
allen0007
H.T.Demon 寫:兩位~ 看看這篇吧\r
http://phpbb-tw.net/phpbb/viewtopic.php?t=14574
喔~~感恩啊~~不過我怕裝了之後,系統相簿又出不來了
我今天才重裝好的,目前一切狀況良好

發表於 : 2003-08-25 15:39
天霜
io_oi 寫:謝謝allen0007
這個我有找到並改過
可是這裡應該要顯示圖示卻沒有顯示
這個我就看不出端倪了.....
如果你是指”如果個人資料內的性別文字也要改用圖示的話”
其實不是指在”編輯”個人資料中顯示\r
而是在檢視會員個人資料中顯示喔...

發表於 : 2003-09-18 22:17
io_oi
天霜 寫:如果你是指”如果個人資料內的性別文字也要改用圖示的話”
其實不是指在”編輯”個人資料中顯示
而是在檢視會員個人資料中顯示喔...
原來如此,是我誤會了.....