By TOM WHITMIRE on Wednesday, 12 February 2014
Posted in General Issues
Replies 5
Likes 0
Views 0.9K
Votes 0
Aloha,

http://LIVET.tv

Thank you for always having fantastic responses that come very fast. I really appreciate it.

I worked for a while to find how to remove or turn this off but failed.

How do I remove the CATEGORY TITLE from RANDOM POSTS & RECENT POSTS?

On RELATED POSTS Their is an option to say NO but I don't see that on these other two.

Attached is a photo of my right column where you see the CATEGORY being displayed in 'Normal Font' and the Blog Title is above in BOLD. example... 'NUTRITION' or 'MOVIES THAT MATTER' or 'VIDEO COURSE'.

I'm making a quick edit here. The word VIDEO COURSE might be the Tag name that I set to display the videos all with this tag. Either way I don't want the category displayed under the title.

Thank you so very much,

http://LIVET.tv
Hello Tom,

For Latest blogs you can do this

http://screencast.com/t/TQmT8IET7iP

For Random posts you can go to this file

JOOMLA/modules/mod_easyblograndompost/tmpl/default.php

and remove the codes in line 57 to 59
<div class="mod-post-type">
<a href="<?php echo EasyBlogRouter::_( 'index.php?option=com_easyblog&view=categories&layout=listings&id=' . $post->category_id . $menuItemId );?>"><?php echo $post->getCategoryName();?></a>
</div>

Also I can't check your backend because i get this error when i try to login,

>> Username and password do not match or you do not have an account yet.

Hope this helps.

Thanks!
·
Wednesday, 12 February 2014 11:13
·
0 Likes
·
0 Votes
·
0 Comments
·
Adelene,

That worked fantastic for everything but RECENT VIDEO POSTs -

So I see now I didn't make myself to clear on this request so here we go.

http://LIVET.tv

I am using Module mod_latestblogs on my home page to display only VIDEO POSTS. I am doing this by selecting 'Latest posts by category' then in latest category posts parameters I select my category of 'VIDEO COURSE' in Post parameters i have 'SHOW CATEGORY' as NO. - That category only has video posts in it.

When I go to my home page above the 2 videos I see the words 'VIDEO COURSE' Where is this coming from and how do I get rid of it. Thank you.

You can see an example of this in the attached photo from my original request.

MODULE is called 'RECENT VIDEOS' and is in right column.

http://LIVET.tv - username & password have been updated for you
·
Wednesday, 12 February 2014 13:29
·
0 Likes
·
0 Votes
·
0 Comments
·
I don't seem to see any "RECENT VIDEOS" on your home page but I am guessing that you are referring to the latest blogs module am I right? I have removed the codes below from /modules/mod_latestblogs/tmpl/default_category.php


<div class="ezcategorytitle">
<?php

$tmpObj = new stdClass();
$tmpObj->category_id = $category->id;
$tmpObj->created_by = '0';
$tmpObj->id = '0';

$itemId = modLatestBlogsHelper::_getMenuItemId($tmpObj, $params);


$catURL = EasyBlogRouter::_('index.php?option=com_easyblog&view=categories&layout=listings&id=' . $category->id . $itemId );
$catLink = '<a href="'.$catURL.'">'.$category->title.'</a>';
echo $catLink;
?>
</div>
<?php if($params->get('showccount', true)) : ?>
<div class="ezpostcount small">
<?php echo JText::sprintf('MOD_LATESTBLOGS_POST_COUNT', $categoryTotalPostCnt);?>
</div>
<?php endif; ?>
·
Thursday, 13 February 2014 01:16
·
0 Likes
·
0 Votes
·
0 Comments
·
PERFECT AS ALWAYS. Thank you!
·
Thursday, 13 February 2014 04:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Tom,

You're welcome.
·
Thursday, 13 February 2014 11:01
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post