By Keith Colleluori on Sunday, 31 May 2015
Posted in General Issues
Replies 3
Likes 0
Views 821
Votes 0
Is there a way to hide tags on the entries? I have been assuming tags will provide better access to uers for navigation but do not want them displayed on the entries, only want them for navigation on a tags list perhaps.

Thanks
Hi Keith Colleluori,

May i know is it you would like to hide the tag on blog entry page only?

If yes, you can remove this few line of code on this file ->JoomlaFolder\components\com_easyblog\themes\default\blog.read.php
LINE 146 - 148
		<?php if( $this->getParam( 'show_tags' ) ){ ?>
<?php echo $this->fetch( 'tags.item.php' , array( 'tags' => $tags ) ); ?>
<?php } ?>


Hope this help.
·
Sunday, 31 May 2015 11:08
·
0 Likes
·
0 Votes
·
0 Comments
·
this was helpful. I also removed this

lines 95-97 blog item.php

<?php if( $this->getParam( 'show_tags' ) && $this->getParam( 'show_tags_frontpage' , true ) ){ ?>
<?php echo $this->fetch( 'tags.item.php' , array( 'tags' => $row->tags ) ); ?>
<?php } ?>


please advise if that is wrong. I did that to remove it from the frontpage and blog entry (forget which was which)

Further please advise if there are any other places I would want to remove it. I do not really want it to show up anywhere but have not noticed it cropping up elsewhere yet, but i dont use all functionality yet.
·
Monday, 01 June 2015 14:16
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Keith.

I have tried remove this code from my blog.item.php. Yes, you do it right. Tags will not show up under all of you blog post.
·
Monday, 01 June 2015 18:44
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post