9144 comments found.
I’m attempting to change the sort order of items in my filters. I tried using all the default sort options, but none appear to work. Here is the page with our filters: https://eaglesedgeprograms.org/program-finder/
1. Grade – This is created by an ACF Select field. We want to order the Choices as they appear in the ACF field. Current Order: 2nd 3rd 4th 5th 6th 7th 8th 9th 10th PreK 11th.. Desired Order: PreK Kindergarden 1st 2nd 3rd….
2. Dates – This is Taxonomy terms. We’d like to manually order these options.
3. Time of Day – This is Taxonomy terms. We’d like to manually order these options.
Hello OctoCog
Thank you for purchasing the plugin.
If available sorting options are not good for you, you always can sort filter terms with code via hook ‘wpc_terms_before_display’ Here are more info and example of using the hook – https://filtereverything.pro/resources/hooks/#terms-before-display-hook
Hi, is it possible thru a filter and/or action to redirect product category archive. example: lets say i have a product category filter and when i click a different product category. i would like to change to that product category page with the filters i might have chosen. I am just looking for that filter or action where i can create my code for it. thanks in advance. awesome plugin. you created
Hi eaonflux
Thank you for your warm words about the plugin. I would be glad to get them in reviews 
About redirect – you can write your custom code to redirect from selected Category filter page to the original Category page and if you need to get in the code what current filters were selected you can use the function flrt_selected_filter_terms(); Here is more info about this and other functions – https://filtereverything.pro/resources/functions/
ah i already found it.
There’s an issue when using the Date sorting widget in DESC order and Load More pagination button in Elementors recent post module.
When attempting to load more posts using the load more pagination option, the sort does not apply past the first 14 results.
Can you please assist on how to correct this issue?
Configuration:
Elementor Recent Posts Query – Posts – Show 14 posts – Pagination ( Load More )
Sorting Widget – Order by Date – DESC Order
Feed Results - First 14 posts are in the correct DESC order - All other posts are in ASC order
Ordering looks like this: 2016 2018 2022 2021
Should be this: 2016 2018 2021 2022
Hello iwsllc
Please, send me credentials to your /wp-admin in accordance with this document and link to the page with example of the problem I will check it myself.
Thank you.
I sent you credentials. Thx!
Hello iwsllc
Thank you for your credentials.
I checked the problem and I have to say that it is rather Load more button algorithm issue than problem in Filter Everything PRO plugin.
If the Load more buttom developer wanted to make it universal he should make its work based on URL of the current page. But it seems it uses another algorithm and I can not change it from my plugin.
As option you can try to find another plugin that adds the Load more button on WordPress site. For example for WooCommerce products there is such plugin that is compatible with FE – https://wordpress.org/plugins/load-more-products-for-woocommerce/
Ok thank you for taking the time to look into the issue.
HI, we wanna buy your ticket but we have a small question before buying that ;
can we create the filter with custom field on type of USER on product of woocommerce ?
for example : product 1: ACF : vantinh, henning, phillip
filter : spearkers with checkbox of vantinh, henning, phillip
thanks
Hi chuvantinhbotiss
Thank you for your interest in Filter Everything PRO.
Yes, exactly. You can filter your products by this Custom Field with my plugin 
@Stepasyuk : Can we filter both of products and post with your plugin at the same time, only IN ONE FILTER. BECAUSE WE Have posts and products .
and can we change the layout of result after filtering ? we want the posts or products sort by category or what we want
Hi chuvantinhbotiss
To filter Posts and Products you have to create at least two Filter Sets. I tried to make filter to work with multiple post types simultaneously but such feature is rarely required, but generates many problems with its configuring for users and I commented it in the plugin code.
I am developer, can I change that via action or filter , or direct in your code ?
could you provide this feature for us ? of course, we have to pay for you pls give us your opinion and how much for that. Then, I will ask my team leader
thanks
I’m glad to have deal with developer 
Yes, sure, I can provide you with instrusction how to uncomment code that allows you to use any post types in Filter Set. But it expects that your Posts and Products are queired in one common WP_Query. And also you can use such modifed plugin at own risk.
Thanks, could you show me how to archive that because tomorrow I will have a meeting at my company and this is an important feature for our website .
should I buy your plugin to test ? thanks, because I want to change the filter
@Stepasyuk what do you think ? should we buy your plugin and then edit /, or can you custom this for us ?
Hi chuvantinhbotiss
Sorry for the late response. Send me please, message in PM and I will send you PRO plugin copy to test if it works with any post types. Unfortunately now I have no time to create such demo staging page.
Hi Stepasyuk, thank you again for your help!
I would need a bit more help regarding the customization. In the settings I can choose only one color for the active state of the buttons, however there is no option for the backgrounds or other elements. How can I change the field background from white to the brand color #E4E0D7? And how can I do that for the pop-up menu on mobile as well, white to custom color?
Also is there a way to have the Filter icon (the one that appears on mobile) on desktop as well? Is it possible to have the filters collapsed and when the user presses the Filter icon/button, the filters to expand down?
Thank you in advance!
Hi cirsteanalexandra31
I would like to help you with customization but unfortunately it is something out of the item support scope here on CodeCanyon.
I can only say that background of the Filters widget and its inputs depends from your theme CSS and you have to modify these CSS to change them.
Yes, you can enable Collapsing in Filters -> Settings -> Mobile Devices or you use Pop-up Filters widget on Desktop if you change mobile breakpoing value for the plugin.
To change mobile breakpoint please add in the functions.php file of your active theme next code:
add_filter( 'wpc_mobile_width', 'my_custom_wpc_mobile_width' );
function my_custom_wpc_mobile_width( $width )
{
$width = 1920; // new desired breakpoint in px
return $width;
}
Hello,
I cannot make Filter everything display filters on default WooCommerce Shop Page >> https://arena.weblikepro.ro/shop/?cmp_bypass=incognito
I can only display Filter everything Filters on Product Categories pages >> https://arena.weblikepro.ro/categorie/competitie/?cmp_bypass=incognito
Hello weblike
As I see now filters appear on the Shop page and the problem is solved. I’m glad that it already works for you 
Hello,
In what i’m trying to do, I have posts that can be sorted with different classification : • Type (toy, chocolate, plant) • State (new, used, second hand) • Theme (christmas, easter, halloween) • Year or release (1999, 2000, 2001, 2003)
For the moment I have no custom taxonomy. It’s posts only, no woocommerce.
Inside this classification, I want any POST having these 4 classifications specified like for example:
Is it a toy OR chocolate OR a plant AND is it new or used or second hand AND is it related to the theme of christmas OR halloween OR easter AND was is released in 1999 OR 2000 OR 2001 OR 2003
This way I could easily display all the posts checking for example this criteria :
Displays all TOYS and CHOCOLATE that are NEW and related to HALLOWEEN and EASTER and released in 2001.
This is exactly what I need in filtering and for the moment i’m unable to achieve it with the plugin. I think it’s basic behaviour but can’t make this work. All the best.
Yann
Hello, Yann
If you configured your filters correctly and your posts have correct data my plugin allows to achive such results and moreover it was created to receive such results.
I think there could be two possible reasons – your posts data have unexpected values, you can check it for exapmle directly in DB with phpMyAdmin plugin. Or you have another 3rd party plugin or maybe custom code that affects on your filtering process.
Invoice No: IVIP49313935 Order No: 170559426
I have the filter now on a page, but i want it on several pages, but i dont see this option. Does this mean i need for all pages a seperate filter?
Or is there a possibility im overseeing?
Site is www.tattipatti.nl
https://tattipatti.nl/nike https://tattipatti.nl/jordan/On the first nike page the filter is working, but now i want the same filter on the jordan page, is this possible?
Kind regards
Hello amandomm
Thank you for using Filter Everything PRO.
It is possible only to select some type of pages, for example ”All archive pages for this Post Type” or ”All category pages” or so. The reason, why can not select a list of different pages is that ususally on such pages there are different WP_Queries and they should use different Filter Sets to be able to filter on them.
Hello, I have the PRO version and the sort by price filter produces random results. Is there a way to fix that?
Hi,
I would like to translate some text. I use Loco Translate. But it didn’t work. How can I translate it to Dutch?
Thnx,
Paul
Hi, Paul.
Thank you for using Filter Everything PRO.
You can translate almost all plugin text strings with Loco translate. There may be only couple string that can not be translated in such way. Please, let me know what exatcly string you tried to translate.
Resolved
bulker88
Great. Thank you for using Filter Everything PRO.
Hi, is it possible to make couple of filters for different product categories? like on each page, it should only show the expanded filter of corresponding product.
For example, when I browse on car page, it should show the expanded filter of car only.
Thank you.
Hello AshhLam
Thank you for your interest in Filter Everything PRO.
In general yes, you can make filters expanded by default for some specific category pages. In terms of the plugin support I can provide you with advices how to do that in code. But custom coding is not included in the item support and you have to do it by yourself or ask a developer to help you.
Hi, pop up filter on mobile is not working, any advice?
Hi joamedia
Thank you for using Filter Everything PRO.
Please, provide me with link to the page where you have this issue. Optionally you can send it via PM if you do not want to make it public.
I would like to embed this filter form on my homepage header with a few fields mapped to product attributes. When a user searches, are they redirected to the default WooCommerce search results page?
This is my site https://tcg.land, if I add the form to the homepage, will users be redirected to the current search results page or does this filter form need to redirect to some different page?
Hello SoyJimmy
Thank you for using Filter Everything plugin.
Please, write your support request from the account, where you purchased the plugin.
select2 does not work if there is a checkbox field selected. If there is a filter selected (or pre-selected) the checkbox search system stops working. why?
Hello giuseppedichiara
In general it is compatibility issue with your other plugins or theme or custom code. Please, provide me with link to the page with this problem and I will let you know what exactly the reason of such behaviour.
Hello giuseppedichiara
Thank you for the link you provided.
I checked your site and realized that you placed Filter widgets in the accordion module that makes them hidden by default. jQuery Select2 plugin does not apply itself to the hidden select tags and after you open them you have to re-init Select2 function. Optionally you can use JavaScript function wpcInitiateAll(); included in my plugin that initiates all FE features on the page.
Or you can use native FE Collapsing button in Filters -> Settings -> Mobile devices or even native Folding option inside every filter.
I have the same issue as @bokishaNET Products that are not on sale are appearing in the filter, more 200 products. Another issue, brands filters doesnt work (shows the correct number of items but doesnt redirect to the brand page upon click)
i fixed the brand filter – had to do with redirection i made. but still issue with the on sale products. appreciate your support
Hello igharib
Did you try to use checkbox “Use for Variations” for your filter by “On Sale” status? It located under “More options” section of the filter.
hi, it doesn’t work and don’t have variations on our products
Hi igharib
It seems you have the same reason as another customer – some of your products have empty values for post meta fields with meta key ‘_sale_price’ Try please to delete them with SQL query in PhpMyAdmin (you can install it as WordPress plugin) But please, create a DB backup before that. Here is the query:DELETE FROM `wp_postmeta` WHERE `meta_key` = '_sale_price' AND `meta_value` = ''
Don’t forget to edit the query with your table names – replace `wp_postmeta` with your value.
Hello again, Is there a way to order the items in a custom way?
I have this case: 10-9mm 2-1mm 3-2mm 5-4mm 6-5mm 9-8mm
What I want is to have this order 2-1mm 3-2mm 5-4mm 6-5mm 9-8mm 10-9mm
I use the Term name option and I get the item from an ACF field
Thanks for your help
Hello starlightcorp
If no one from available sorting options is good for you, you always can try to sort them via code. There is hook ‘wpc_terms_before_display’ – https://filtereverything.pro/resources/hooks/#terms-before-display-hook and it allows you to sort them as you need. Of course it requires to be familiar with PHP coding or you have ask a developer to help you.
FIXED
Great.
I’m glad that your problem was solved
And thank you for your notification about that.
I didn’t get this plugin to work as required on www.bestbonuslist.com, is it possible to get a refund?
Hi monsmas
I’m sorry that you were not able to make it work.
Please, let me know details what exactly does not work, what you tried to do and what you get. Optionally you can send me credentials to your /wp-admin in accordance with this document I will check it myself.
Thank you.
The developer that requested the plugin to be added is no longer with us. We’ve continued with our custom coded filter which is the best solution for us.
monsmas
Ok, I understood you. You can create a refund request in the form in your account. The request will be processed in accordance with the CodeCanyon Refund Policy Rules.
Hello monsmas
Please, write me message in PM I have win-win offer for you to close the issue with the plugin, refund request, your review and so on.
Thank you. Kind regards.
Hello, we are currently experiencing a problem with the activation of AJAX. Indeed, when it is activated, our products are not updated on the catalog according to the activated filters: the same products remain displayed without any modification. For example, if I click on the “fire” labels, the products related to this label will not be displayed despite a good configuration of the filters. When AJAX is disabled, everything works.
Thank you in advance
Hello ruaneo
Usually it means that you configured wrong value for the “CSS id or class of the Posts Container” option. Or you have some JavaScript errors on you site pages. You can check this in the Chrome Console for example.
I recommend you to read this short article about how to configure “CSS id or class of the Posts Container” – https://filtereverything.pro/resources/plugin-settings/#ajax