PhpWind教程:修改默認評分顯示順序_for all_PhpWind教程
比如默認評分是威望在前面,想修改金錢或其他積分類型在前面,修改如下
修改文件: 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'){//這個自己改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] == '好評度'){//這個自己改如金錢、威望等
$defaultcid = 'selected';
}else{
$defaultcid = '';
}
$creditselect .= '';
查看更多 PhpWind教程 PhpWind模板風格
- PhpWind教程:PHPWind forum V7.5 SP1 使用與修復說明
- PhpWind教程:PHPWind Forum V7.5 升級教程
- PHPWind7.3 升級7.3.2 圖文教程
- PhpWind教程:sitemap生成問題
- PhpWind教程:熱榜排行 for 75
- PHPwind 6.3.2升級至PHPwind 7.3.2 圖文教程
- PHPWind 7.0 升級至PHPwind 7.3.2 圖文教程
- PHPWind 7.0 升級到PHPwind v7.3 圖文教程
- PHPWind 6.3.2升級到 PHPwind v7.3 圖文教程
- PHPWind6.3.2升級PHPWind7.0說明教程
- PhpWind教程:PHPWind6.3(6.3rc、6.3) to PHPWind6.3.2升級教程
- PhpWind教程:PHPWind6.x(6.0rc、6.0) to PHPWind6.3.2升級教程
PhpWind教程教程Rss訂閱Cms教程搜索
PhpWind教程推薦
- PhpWind教程:環(huán)境配置打開了allow_url_fopen卻無法采集
- PhpWind教程:PHPWind Forums 新功能之邀請碼在線支付功能(6.3)
- PhpWind教程:mx 郵件設置發(fā)送功能說明
- PhpWind教程:PHPWind之自定義風格
- PhpWind教程:附件多媒體文件自動播放
- PhpWind教程:MYSQL Server Error Duplicate entry '%s' for key %d Error n
- PhpWind教程:修改圖片描述顯示在圖片下方
- PhpWind教程:全站置頂問題
- PHPWind 6.3.2升級到 PHPwind v7.3 圖文教程
- PhpWind教程:創(chuàng)始人忘記后臺密碼處理方法
- 相關鏈接:
- 教程說明:
PhpWind教程-PhpWind教程:修改默認評分顯示順序_for all。