joomla如何获取主页上的getListFooter
我使用的是joomla 1.7.3
我的主页上有大量带分页的文章。我必须显示一个下拉框,供用户选择要在主页上显示的项目数量。
我已经编辑过
\components\com_content\views\featured\tmpl\default.php
并更改
<?php echo $this->pagination->getPagesLinks(); ?>
为
<?php echo $this->pagination->getListFooter(); ?>
然后主页开始显示下拉列表,但它不起作用。然后我用表单包装了分页部分(我不知道操作值)然后当我更改下拉值时,页面会刷新,但显示的项目数不会改变
请帮助
I am using joomla 1.7.3
I have a large number of articles on home page with pagination. I have to show a drop down box for users to choose number of items to show on home page.
I have edited
\components\com_content\views\featured\tmpl\default.php
and changed
<?php echo $this->pagination->getPagesLinks(); ?>
to
<?php echo $this->pagination->getListFooter(); ?>
then home page starts to show the drop down but its not working. then I have wrapped the pagination section with a form ( I dont know the action value) then when I change the drop down value, the page gets refreshed but number of items displaying is not changing
Pleaes help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单的。这是您想要的形式:
您甚至不需要
getListFooter()
;只需包含上面的代码即可。Easy. Here's the form you want:
You shouldn't even need
getListFooter()
; just include the above code.