Display all an articles tags in tags list view - Joomla! Forum - community, help and support
on page this, can see list of article titles contain specific tag:
http://www.bestukhashtags.co.uk/compone ... /18-monday
is possible display tags associated article beneath article title in list view?
http://www.bestukhashtags.co.uk/compone ... /18-monday
is possible display tags associated article beneath article title in list view?
global configuration articles has option show tags show or hide. set hide? go articles tab , scroll down.
if set show, there should list of assigned tags right under title of article.
these lines in components/com_content/views/article/tmpl/default.php right under page title , publishing information in joomla core files.
<?php if ($info == 0 && $params->get('show_tags', 1) && !empty($this->item->tags->itemtags)) : ?>
<?php $this->item->taglayout = new jlayoutfile('joomla.content.tags'); ?>
<?php echo $this->item->taglayout->render($this->item->tags->itemtags); ?>
<?php endif; ?>
if set show, there should list of assigned tags right under title of article.
these lines in components/com_content/views/article/tmpl/default.php right under page title , publishing information in joomla core files.
<?php if ($info == 0 && $params->get('show_tags', 1) && !empty($this->item->tags->itemtags)) : ?>
<?php $this->item->taglayout = new jlayoutfile('joomla.content.tags'); ?>
<?php echo $this->item->taglayout->render($this->item->tags->itemtags); ?>
<?php endif; ?>
Comments
Post a Comment