I am using Joomla 3.4.8 and it's Article - Latest Module. That module showed only latest article's title but I want to show introtext and tags also. I was able to show the introtext but didn't able to show tags. Can anyone help me to figure it out? Here is my code given below.
<pre><code>foreach($list as $item):
echo $item->title;
echo $item->introText;
echo $item->tags->itemTag;
endforeach;</code></pre>
When I run this code get the error message:
Notice: Array to string conversion in F:\xampp\htdocs\rnd\joomla\tx_quicx\modules\mod_articles_latest\tmpl\default.php on line 37
Which corresponds to echo $item->tags->itemTag;
Thanks in advance.