Show Only One Category on Post

Posted in: Newspaper
Post count: 33

While I like showing the category above the title on a single post, I only want to show one of them if more than one categories are selected for a particular post.

Is there a hack for the td_module_single_base.php file to only show one category instead of all categories the post are tied to?

Thanks

Post count: 7909

Hi,

You can modify the get_category function in td_module_single_base.php file like you already figured out. You can count the categories so when are more to not display them – http://screencast.com/t/WXuwtNV7cK

$count = 0;

$count++;
if ($count > 0) {
break;
}

If you want something different please get someone to help you with this as we cannot provide custom work at this time sorry!

Thanks!

Viewing 2 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic.