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教程:环境配置打开了allow_url_fopen却无法采集
- PhpWind教程:PHPWind Forums 新功能之邀请码在线支付功能(6.3)
- PhpWind教程:mx 邮件设置发送功能说明
- 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教程:创始人忘记后台密码处理方法
- 相关链接:
- 教程说明:
PhpWind教程-PhpWind教程:修改默认评分显示顺序_for all。