Joomla 在类别页面上显示子类别图像?
除了创建另一个 MYSQL 连接之外,是否有办法在浏览父类别页面时检索子类别图像?
例如:
- 主类别(设置类别为博客)
- 子类别 1(基本选项图像字段中设置的图像)
- 子类别 2(基本选项图像字段中设置的图像)
- 子类别 3(基本选项图像字段中设置的图像)
- ...
现在,当我浏览“主类别”时,它显示类别标题和子类别的描述,但我找不到任何“正常”方式来检索我在基本选项中设置的图像。
我可以工作的唯一方法是创建另一个 MYSQL 调用并从数据库检索图像,但我想知道是否还有另一种更有效的方法。
我使用 Joomla 2.5。
谢谢!
Is there a way, beside creating yet another MYSQL connection, to retrieve subcategory image while browsing parent category page?
For example:
- Main category (set as category as blog)
- Subcategory 1 (image set in Basic options image field)
- Subcategory 2 (image set in Basic options image field)
- Subcategory 3 (image set in Basic options image field)
- ....
Now, when i browse 'Main category', it display categories title and description of subcategories, but I cant find any 'normal' way to retrieve image that i set in basic option.
The only way that I can make to work is to create another MYSQL call and retrieve image from database, but I would like to know if there is another more effective way.
Im using Joomla 2.5.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您覆盖内容的输出,以便您可以添加一些代码来输出图像。
复制:
至:
然后编辑新的覆盖文件,如下所示:
添加:
请参阅 Joomla 文档 用于组件输出类型和布局覆盖。
I suggest you override the output of the content so that you can add some code to output your images.
Copy:
To:
Then edit your new override file, just below:
Add:
See Joomla docs for Component Output Types and Layout Overrides.