在Joomla类别列表菜单中显示简介图像

时间:2015-12-01 23:20:17

标签: php joomla joomla3.0 joomla-template

我正在使用Joomla 3.4.5并在我的覆盖文件中为类别列表菜单添加了这两行

$images  = json_decode($this->item->images);
<?php echo $article->images; ?>

结果如下:

{"image_intro":"images\/articles\/liangmai2.jpg","float_intro":"","image_intro_alt":"","image_intro_caption":"","image_fulltext":"","float_fulltext":"","image_fulltext_alt":"","image_fulltext_caption":""}

如果没有反斜杠,路径images\/articles\/liang2.jpg是正确的。现在,如何将其显示为<img src="images/articles/liang2.jpg">并删除反斜杠?

感谢。

1 个答案:

答案 0 :(得分:1)

您需要对位于以下位置的文件进行更改:Modules / mod_article_category / tmpl / default.php在其他条件中,即Not Grouped在您的li标签之间的foreach循环中添加这些行:

**curl_setopt($ch , CURLOPT_FAILONERROR , false);**