PhpWind教程:修改默認(rèn)評(píng)分顯示順序_for all_PhpWind教程
比如默認(rèn)評(píng)分是威望在前面,想修改金錢或其他積分類型在前面,修改如下
修改文件: operate.php
7.3.2版本修改方法:
查找
$creditselect .= '';
修改為:
$creditselect .= '';
//rvrc可以改成其他的,如money表示金錢,rvrc表示威望
7.0版本修改方法:
找到
foreach ($credittype as $key => $cid) {
if (isset($credit->cType[$cid])) {
$creditselect .= '';
修改為
foreach ($credittype as $key => $cid) {
if (isset($credit->cType[$cid])) {
if($cid == 'money'){//這個(gè)自己改money金錢,rvrc威望
$defaultcid = 'selected';
}else{
$defaultcid = '';
}
$creditselect .= '';
6.3.2版本修改方法
找到
foreach ($credittype as $key=>$cid) {
if (isset($cType[$cid])) {
$creditselect .= '';
修改為:
foreach ($credittype as $key=>$cid) {
if (isset($cType[$cid])) {
if($cType[$cid] == '好評(píng)度'){//這個(gè)自己改如金錢、威望等
$defaultcid = 'selected';
}else{
$defaultcid = '';
}
$creditselect .= '';
- PhpWind教程:PHPWind forum V7.5 SP1 使用與修復(fù)說(shuō)明
- PhpWind教程:PHPWind Forum V7.5 升級(jí)教程
- PHPWind7.3 升級(jí)7.3.2 圖文教程
- PhpWind教程:sitemap生成問(wèn)題
- PhpWind教程:熱榜排行 for 75
- PHPwind 6.3.2升級(jí)至PHPwind 7.3.2 圖文教程
- PHPWind 7.0 升級(jí)至PHPwind 7.3.2 圖文教程
- PHPWind 7.0 升級(jí)到PHPwind v7.3 圖文教程
- PHPWind 6.3.2升級(jí)到 PHPwind v7.3 圖文教程
- PHPWind6.3.2升級(jí)PHPWind7.0說(shuō)明教程
- PhpWind教程:PHPWind6.3(6.3rc、6.3) to PHPWind6.3.2升級(jí)教程
- PhpWind教程:PHPWind6.x(6.0rc、6.0) to PHPWind6.3.2升級(jí)教程
PhpWind教程教程Rss訂閱Cms教程搜索
PhpWind教程推薦
- PhpWind教程:環(huán)境配置打開(kāi)了allow_url_fopen卻無(wú)法采集
- PhpWind教程:PHPWind Forums 新功能之邀請(qǐng)碼在線支付功能(6.3)
- PhpWind教程:mx 郵件設(shè)置發(fā)送功能說(shuō)明
- PhpWind教程:PHPWind之自定義風(fēng)格
- PhpWind教程:附件多媒體文件自動(dòng)播放
- PhpWind教程:MYSQL Server Error Duplicate entry '%s' for key %d Error n
- PhpWind教程:修改圖片描述顯示在圖片下方
- PhpWind教程:全站置頂問(wèn)題
- PHPWind 6.3.2升級(jí)到 PHPwind v7.3 圖文教程
- PhpWind教程:創(chuàng)始人忘記后臺(tái)密碼處理方法
- 相關(guān)鏈接:
- 教程說(shuō)明:
PhpWind教程-PhpWind教程:修改默認(rèn)評(píng)分顯示順序_for all
。