By Fagault Eric on Thursday, 24 August 2017
Posted in General
Likes 0
Views 521
Votes 0
Hello,
I want to change the order of items that are displayed in the "FILTER BY APPS" menu, I can not find where to do this.
I will also display 10 items instead of the 3 currently.

Where can I do this?

Best regards.

Eric
Hi Eric,

Kindly find my response for your inquiries below:
I want to change the order of items that are displayed in the "FILTER BY APPS" menu, I can not find where to do this.

-> Unfortunately, it is not possible to re-order the items that are display in the 'Filter by App' as it was load according to the database app table.

I will also display 10 items instead of the 3 currently.

-> For this, you actually can customize in the file:
components/com_easysocial/themes/wireframe/dashboard/default/default.php line 116
from:
li class="o-tabs__item <?php echo $i > 3 ? ' t-hidden' : '';?><?php echo $filterId == $appFilter->alias ? ' active' : '';?>"

change to
<li class="o-tabs__item <?php echo $i > 10 ? ' t-hidden' : '';?><?php echo $filterId == $appFilter->alias ? ' active' : '';?>"

and see how it goes?
·
Thursday, 24 August 2017 11:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Thank you very much Fadhli.

Best regards.

Eric
·
Thursday, 24 August 2017 14:30
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Eric

As a gentle reminder, kindly start a new thread if you have any other issue in the future so it will be easier for us to manage your inquiry. I will lock and mark this thread as resolved.

Have a nice day ahead
·
Thursday, 24 August 2017 15:22
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post