If I go to a category list of blog entries or anywhere else in my site, I see links to the SEF url for a blog entry. I created a template override that uses the same URL generation method as the stock template, but it's not creating SEF links. Basically, instead of this:
/about/blog/15-my-blog
I see this kind of url:
/about/blog?view=entry&id=15
Is there a way to get the SEF url in a template override? I'm currently doing this:
EasyBlogRouter::_('index.php?option=com_easyblog&view=entry&id=' . $post->id )
Thanks!