By Mark H on Wednesday, 14 May 2014
Posted in General Issues
Replies 1
Likes 0
Views 596
Votes 0
Hi,

Please can you tell me why I have this:

You are here: Home>Blog>Mark>Blog Entry

and not this:

You are here: Home>Blog>CATEGORY>Blog Entry

I have five blog categories setup in EasyBlog. Do I need to setup Joomla categories or menus or something?
Hello Mark H,

You may have to perform some hack in your view.html.php . The file is located here Your_Joomla_file\components\com_easyblog\views\entry\view.html.php.

look for this line in 354 to line 357
if( ! EasyBlogRouter::isCurrentActiveMenu( 'blogger', $blogger->id ) && $config->get( 'layout_blogger_breadcrumb') )
{
$this->setPathway( $blogger->getName() , $blogger->getLink() );
}

replace with this line of code
$category	= EasyBlogHelper::getTable( 'Category' , 'Table');
$category->load( $blog->category_id );
$this->setPathway( $category->title , '' );

Make sure you backup your existing view.html.php file before you make any changes
The result is shown in this screenshot http://screencast.com/t/G6HKI1gTr
Hope that helps
Regards
Kheng Wei
·
Thursday, 15 May 2014 12:20
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post