By Steve Kraft on Friday, 21 March 2014
Posted in General Issues
Replies 3
Likes 0
Views 782
Votes 0
Hi there,

is it possible that "My Posts" and "Assigned Posts" are new set filters that you implemented after the last update or had I tomatoes on my eyes before? : )

Can you bring up those two on the filter-settings at backend to change the state of them?


Best regards and thanks in front of all efforts,
Steve
Hello Steve,

Yes, that's right You can remove this if you want from the theme files in /components/com_easydiscuss/themes/simplistic/frontpage.index.filters.php by removing the codes below:


<?php if($system->my->id != 0) { ?>
<li class="filterItem<?php echo $activeFilter == 'mine' ? ' active' : '';?>" data-filter-tab data-filter-type="mine">
<a class="mineFilter" href="javascript:void(0);">
<?php echo JText::_('COM_EASYDISCUSS_MY_POSTS' );?>
</a>
</li>
<?php } ?>

<?php if(EDC::isSiteAdmin() || EDC::isModerator()) { ?>
<li class="filterItem<?php echo $activeFilter == 'assigned' ? ' active' : '';?>" data-filter-tab data-filter-type="assigned">
<a class="mineFilter" href="javascript:void(0);">
<?php echo JText::_('COM_EASYDISCUSS_ASSIGNED_POSTS' );?>
<span class="label label-important label-notification"><?php echo $assignedCount; ?></span>
</a>
</li>
<?php } ?>
·
Friday, 21 March 2014 17:42
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mark,

many thx for you fast reply on this. I commended this out instead of deleting it, maybe it will come in use in the future. But thanks again... now I know, I havent tomatoes on my eyes : ))

Cheers and best regards to you all,
Steve
·
Tuesday, 25 March 2014 15:56
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Steve
·
Tuesday, 25 March 2014 17:32
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post