By Mireku Studios on Thursday, 03 September 2015
Posted in Technical Issues
Replies 3
Likes 0
Views 591
Votes 0
I don't want the EasyBlog - Showcase Module to appear on each blog page, just the front page. How do I make this modification?

Thanks
Brenda
Hi Mireku,

Basically you can go to the module file and modify it accordingly. For instance in your case, you can go to your /modules/mod_easyblogshowcase/mod_easyblogshowcase.php and add the following code to make it to only appear on your easyblog frontpage.
$view = $app->input->get('view');

if ($view != 'latest') {
return;
}


Hope these help.
·
Thursday, 03 September 2015 10:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Yes it did, thank you very much.

Much appreciated!

Brenda
·
Friday, 04 September 2015 04:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mireku,

You are most welcome. Glad that your issue has been resolved now.
·
Friday, 04 September 2015 11:04
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post