Intro image in search results - Joomla! Forum - community, help and support
hello everyone,
i'm trying change how results being displayed in joomla, , add intro image of article in results page. don't know php function calls it.
title = echo $this->escape($result->title)
category = echo $this->escape($result->section)
intro image =
category's link =
i'm trying change how results being displayed in joomla, , add intro image of article in results page. don't know php function calls it.
title = echo $this->escape($result->title)
category = echo $this->escape($result->section)
intro image =
category's link =
it seems accomplish need modify joomla's core. had same problem module related_items, is, enable intro images.
to fix it, had this:
in /joomla/modules/mod_related_items/helper.php
look for
add after
after able add intro images in module.
where and how should declare intro images use in search results ? beleive somewhere in joomla/plugins/search/content/content.php, i'm not sure.
can ?
to fix it, had this:
in /joomla/modules/mod_related_items/helper.php
look for
code: select all
$query->select('a.title');add after
code: select all
$query->select('a.images');after able add intro images in module.
where and how should declare intro images use in search results ? beleive somewhere in joomla/plugins/search/content/content.php, i'm not sure.
can ?
Comments
Post a Comment