diff --git a/components/com_content/models/articles.php b/components/com_content/models/articles.php index e102a0e34a813..b85479df56c93 100644 --- a/components/com_content/models/articles.php +++ b/components/com_content/models/articles.php @@ -659,8 +659,11 @@ public function getItems() } // Get the tags - $item->tags = new JHelperTags; - $item->tags->getItemTags('com_content.article', $item->id); + if ($item->params->get('show_tags')) + { + $item->tags = new JHelperTags; + $item->tags->getItemTags('com_content.article', $item->id); + } } return $items;