phpbb version: 2.0.21
styles: subsilver
我安裝了cash mod 223, 新增了貨幣 "點數"....一切正常...每次發文或回覆都可得到點數...不過當發文或回覆後...頁面會顯示 "您從此文章獲得了5 點數 點數"...我不想有兩個"點數"出現...可以在那裡修改??
另外, 點數在文章左面的發文者或回覆者資料會顯示為 "5點數"...但我想改為 "點數:5"...可以在那裡如何修改??
謝謝
[問題] Cash mod 223 顯示問題
版主: 版主管理群
-
angeljhouse
- 星球公民

- 文章: 118
- 註冊時間: 2006-08-11 12:22
-
angeljhouse
- 星球公民

- 文章: 118
- 註冊時間: 2006-08-11 12:22
找到辦法了!!angeljhouse 寫:
還有一個問題...如果沒有貨幣可以獲得....仍會顯示"您從此文章獲得了 點數 點數"...有辦法在沒有貨幣可以獲得時加上 "0" 嗎?? (如"您從此文章獲得了0點數")
http://www.phpbb.com/phpBB/viewtopic.ph ... 90#2590890
Brf 寫到:
After editing post, it will display "You have earned from this post" (as i set it will have "0" cash for each word)
May I change this to "You have earned 0 from this post" or just delete/don't show this message when it will not be earned cash from this post (i.e. zero cash)??
代碼: 選擇全部
In classes_cash.php look for this in the posting section: 代碼: return ( ($userdata['user_id'] == $poster_id) && ($board_config['cash_display_after_posts'] == 1) ) ? sprintf($board_config['cash_post_message'],implode(', ',$message_clause)) : ''; and try replacing it with this: 代碼: return ( ($userdata['user_id'] == $poster_id) && ($board_config['cash_display_after_posts'] == 1) && isset($message_clause[0])) ? sprintf($board_config['cash_post_message'],implode(', ',$message_clause)) : '';
