By Nick Russell on Friday, 18 September 2015
Posted in Technical Issues
Replies 9
Likes 0
Views 714
Votes 0
Hi

I would like to remove a unit which shows on every blog detail page under 'interviews'

http://t.co/P7AbQCSwsd

It's the grid which shows the past interviews i've done - how could i remove this please?

thanks!
If you update to the latest, 5.0.26 it is no longer there
·
Saturday, 19 September 2015 00:34
·
0 Likes
·
0 Votes
·
0 Comments
·
thanks but havent i got auto-updates switched on? I am referring to this grid by the way, are we talking about the same thing?

thanks
·
Saturday, 19 September 2015 17:58
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Nick,

There is no "auto updates" in EasyBlog. That grid in your screen shot is actually not part of EasyBlog. Is this a 3rd party module?
·
Sunday, 20 September 2015 01:53
·
0 Likes
·
0 Votes
·
0 Comments
·
yea it was put in by the web developer - any idea how i can only make it show on the main interviews (category) page but not on the blog detail page?
·
Sunday, 20 September 2015 05:23
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Nick,

I am really sorry for the delay of this reply as it is a weekend for us here.

You can try apply this following code in your interview module file, so it will not appear on blog entry page.

if (JRequest::getVar('view') == 'entry') {
return;
}
·
Sunday, 20 September 2015 13:14
·
0 Likes
·
0 Votes
·
0 Comments
·
THANKS! does it matter where abouts in the file i place it?
·
Sunday, 20 September 2015 22:36
·
0 Likes
·
0 Votes
·
0 Comments
·
hey Nick,

To be honestly, I am not really sure how the interview module file structure.

Perhaps you can consult with this module provider regarding this and see which file should be responsible to handle this module?
·
Sunday, 20 September 2015 22:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi

I tried to fix this but it doesn't seem to be fixing anything

this is the url - all i need is for the grid unit not to show up on the blog detail pages within that category - is there any setting which i can remove for it not to show no the specific blog posts?
http://blatantlyblunt.com/administrator/index.php?option=com_modules&view=module&layout=edit&id=809

thanks!
·
Wednesday, 30 December 2015 20:11
·
0 Likes
·
0 Votes
·
0 Comments
·
You should consult this with the module provider as the codes needs to be added in the module php file instead. Assuming that the module is called mod_xxx , most likely you need to place the codes in /modules/mod_xxx/mod_xxx.php
·
Thursday, 31 December 2015 00:11
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post