织梦免费模板多吗(帝国cms和织梦对比)

发布日期:2025-01-07 18:15:43     手机:https://m.xinb2b.cn/shenghuo/news6275.html    违规举报
核心提示:织梦dede中列表页显示条数不同的解决方法 首先找到网站根目录/include/ arc.listview.class.php 这里以列表首页显示6条,其他列表页显示9条为例,即 模板页标签{dede:list pagesize=”6″}{

织梦免费模板多吗(帝国cms和织梦对比)

织梦dede中列表页显示条数不同的解决方法

首先找到网站根目录/include/ arc.listview.class.php

这里以列表首页显示6条,其他列表页显示9条为例,即

模板页标签{dede:list pagesize=”6″}{/dede:list}

$this->PageSize = 6

1.找到函数ParseDMFields

在里面找

1if($ctag->GetName()==”list”)2 {3 $limitstart = ($this->PageNo-1) * $this->PageSize;4 $row = $this->PageSize;

修改为:

01if($ctag->GetName()==”list”)02 {03 $limitstart = ($this->PageNo-1) * $this->PageSize;04 if($this->PageNo>2)05{06 $limitstart = ($this->PageNo-1) * ($this->PageSize+3)-3;07 }08 $row = $this->PageSize;09 if($this->PageNo>1)10{11 $row = $this->PageSize+3;12 }


2.找到

1$totalpage = ceil($this->TotalResult/$this->PageSize);//总共有两处分别为静态和动态


改为

1$totalpage = ceil(1+($this->TotalResult-$this->PageSize)/($this->PageSize+3));
 
 
本文地址:https://xinb2b.cn/shenghuo/news6275.html,转载请注明出处。

推荐图文
推荐生活健康
网站首页  |  关于我们  |  联系方式  |  使用协议  |  版权隐私  |  网站地图  |  违规举报  |  蜀ICP备18010318号-4  |  百度地图  | 
Processed in 0.307 second(s), 80 queries, Memory 0.51 M