- Posts: 438
COMMUNITY FORUM
List Page Filtering
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
The only solution I could come up with was to use a jQuery script that displays/hides content based on class. Based on my template each item in the tag list page is wrapped in a <article> tag - which I plan on adding classes to the tag to use with jQuery script. Each class is an echo of the item category name and one specific extra field (in this example: Hybrid).
Here's the Tag Page code I am utilizing:
<article class="typeAll type<?php echo $item->category->name; ?><?php if(isset($item->extraFields->hybrid->value)): ?> type<?php echo $item->extraFields->hybrid->value; ?><?php endif; ?>">
Example Output(s):
<article class="typeAll typeTrucks">...</article>
<article class="typeAll typeCars" typeHybrid>...</article>
(note: I am using the prefix "type" before the category name and hybrid extra field to create a unique class, exclusively for the filter script purposes)
The only draw back/limitation I found so far, is the pagination. For the script to work properly, all of the content must be present/rendered on the page. Which requires me to use the follow parameters: Category > Layout grid > Leading count > 999. This way all of the items are displayed without triggering the pagination. I am using a Lazy Load plugin, so I do not have to work about the images impacting page speed.
Is there another (Better) solution?
Here is the jQuery script I found and then forked for my purposes/demonstration:
jsfiddle.net/3g2y5ku8/
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
They all work pretty much the same, and I have seen this issue many times in the forum.
What to do:
The easy solution, use an extension which supports history and cookies for the pagination.
The hard solution, use JS cookies - github.com/js-cookie/js-cookie in order to set or delete a cookie each time a choice has been made. Once the page has been reloaded, you can read the cookie and depending on the value, hide all the options and show the ones you want.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
The solutions you provided is a bit above my technical capabilities.
Is what I am doing ok/good enough?
Hopefully a developer will create a plugin to provide a solution to this problem (especially if the topic has been presented many times before)
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
Once the page has been reloaded however all choices are lost.
I believe that there are sorting scripts that support this feature.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Mohamed Abdelaziz
-
- Offline
- Platinum Member
- Joomla Developer
Otherwise you will need to follow @Krikor solution, or to find a plugin that can do it.
Multiple Extra Fields Groups for K2
AutoMeta for K2
Chained Fields for K2
More K2 Extensions In My Extensions Store
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
Thanks to the assistance of Peter ( Regular Labs ) and Andrey ( Joomcar )
I was able to get the jQuery to play nice with my Joomla! K2 site and add body list banners for mobile and portait tablet viewports.
I have sooo many K2 Power Tips to post after my launch :)
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
A nice script/ visual plugin which is nice with page filtering is this -> masonry.desandro.com/
It is worth a look.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
Your last post just reminded me of the Joomlabamboo Zenkit:
zenkit.joomlabamboo.com/filter
It's a turn-key solution, but I'm not sure how well it's maintained.
This could be an opportunity for others interested in provided professonal K2 solutions.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
-
- Offline
- Platinum Member
- Posts: 15920
I have implemented masonry in numerous K2 modules, it is quite easy. I can assist you if you need a similar solution.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Joe Campbell
-
Topic Author
- Offline
- Platinum Member
- Posts: 438
This is why I there is a need for an extension that extends the existing template list view (not replace it)
I greatly appreciate you offering assistance - trust me - I will take you up on it later - I have a list of K2-related things that require assistance :)
Any big plans for the summer?
Please Log in or Create an account to join the conversation.