-
AuthorPosts
-
Saguaros Moderator
Saguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
December 4, 2017 at 2:12 pm #1078720Hi,
You’re right, it’s showing with alphabet order now. Could you share the credentials of your site and tell me the fields you’re wanting to change order? I will share with the team for further consideration.
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
December 4, 2017 at 3:56 pm #1078813This reply has been marked as private.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
December 5, 2017 at 4:51 am #1079079Hi,
This kind of sorting is not available yet, I will share the dev crew for further consideration.
Regards
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
December 5, 2017 at 8:40 am #1079132Hi,
This function is urgently! so if you have the solution or path to change the codes, please share it to me.Thank you.
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
December 6, 2017 at 5:43 am #1079357Please feedback to me.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
December 6, 2017 at 9:58 am #1079400Hi,
This feature is not available now and it requires some hard work to get it done, not with some lines of code. I’ve reported to the dev crew so pls wait for the update news.
Thank you!
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
December 7, 2017 at 3:14 am #1079538Hi,
I will count the days and waiting for this function.Cheers!
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
December 7, 2017 at 10:13 am #1079643Hi,
I updated temporarily solution into your site via the file: components/com_jamegafilter/assets/js/megafilter.js
Replace this code:
return fgroup.getItem(a).options.frontend_value.localeCompare(fgroup.getItem(b).options.frontend_value) * order;
By this:
if (a.indexOf('attrct5') > -1) { return -a.localeCompare(b) } else { return fgroup.getItem(a).options.frontend_value.localeCompare(fgroup.getItem(b).options.frontend_value) * order; }
The extra fields will show with order as screenshot
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
January 16, 2018 at 3:14 am #1086870Oh my goshhh! amazing news in the new year!
Thank you so much for all of you.
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
January 16, 2018 at 3:26 am #1086876From above picture, I have more question. If I want to sort them like this
1.kindergarten
2.elementary school
3.intermediate school
4.junior high school
5.senior high school
6.student
7.teacher-instructor
8.individual
9.familywhat should I do?
Thank you.Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
January 16, 2018 at 9:22 am #1086951Hi,
Do you mean that sorting in backend settings of the filter? or on frontend? could you share the URL of that page also? as I’m not familiar with your native language.
Regards
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
January 16, 2018 at 10:47 am #1086963Hi,
From your picture, the extra fields will show with order as this screenshot.
The result of your setting is…
9.family
8.individual
7.teacher-instructor
6.student
5.senior high school
4.junior high school
3.intermediate school
2.elementary school
1.kindergartenbut I want to show them in the reverse direction.
1.kindergarten
2.elementary school
3.intermediate school
4.junior high school
5.senior high school
6.student
7.teacher-instructor
8.individual
9.familyI had tried to change the positions of extra fields in the reverse direction from back-end.
But on the front-end still showing like this…
9.family
8.individual
7.teacher-instructor
6.student
5.senior high school
4.junior high school
3.intermediate school
2.elementary school
1.kindergartenThis picture is the result that I expected
You can see them on url: http://122.155.197.219/event/education/nsm-science-culture-camps.html#sort=attr.ct5.frontend_value
Thank you.
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
January 17, 2018 at 8:31 am #1087202Hi,
In above snippet of code, I changed:
return -a.localeCompare(b)
to:
return a.localeCompare(b)
and it’s showing in order as you wish now: http://122.155.197.219/event/education/nsm-science-culture-camps.html#sort=attr.ct5.frontend_value
Kindly check.
ae.sakon Friendae.sakon
- Join date:
- August 2017
- Posts:
- 44
- Downloads:
- 340
- Uploads:
- 13
- Thanks:
- 1
- Thanked:
- 1 times in 1 posts
January 18, 2018 at 3:26 am #1087398Hi,
Finally!!!!! Big thank you for all of you.
Thank you so much. 🙂
Saguaros ModeratorSaguaros
- Join date:
- September 2014
- Posts:
- 31405
- Downloads:
- 237
- Uploads:
- 471
- Thanks:
- 845
- Thanked:
- 5346 times in 4964 posts
AuthorPostsViewing 15 posts - 1 through 15 (of 15 total)This topic contains 15 replies, has 2 voices, and was last updated by Saguaros 6 years, 10 months ago.
The topic ‘I want to set the JA Megafilter to show the newer to older.’ is closed to new replies.
I want to set the JA Megafilter to show the newer to older.
Viewing 15 posts - 1 through 15 (of 15 total)