The Joomla! Extensions Directory ™

difecto

Reviews(1)
 
bydifecto, November 4, 2010
SearchTag
Very helpful plugin.

To almamun:
There are some ways to display tags on frontpage, one of them is:

In SearchTag.php there is a code:

if ((JRequest :: getVar('view')) == 'article'){

Modify it to this:

$view=JRequest :: getCmd('view');
$layout=JRequest :: getCmd('layout');

if ( ( $view == 'article') || ( ($view=='frontpage') || ($layout=='blog') ) ){

:)