8972 comments found.
Hi Stepasyuk! Pre-purchase question here. Is this plugin will work with Elastic Search (ElasticPress is their plugin in Wordpress), or Solr, or any search engine system which intercept WP_Query and call Elasticsearch instead of MySQL. Thank you.
Hi hanscfsianipar
Thank you for your interest in the Filter Everything PRO.
This feature is planned to be added in the future plugin updates, but for the moment it does not work out of the box.
From other hand the plugin contain own hook that allows you to intercept already modified (with filters added) WP_Query and combine it with search engines like Elastic Search or similar.
If you are familiar with PHP coding I think you cand find a way how to combine them.
Thank you. Regards.
- Andrii.
Hi Andrii,
Thanks for the reply.
For now, the native / theme search is still adequate. But I think in the upcoming months or next year (we still have no exact estimation), our site will need Elastic Search services.
Did you have any estimation of when the update (integration with Elastic Search) will be released?
Since we are preparing for it, we are interested to buy the plugin to prepare our UI, taxonomy, etc. while waiting for your team to integrate with Elastic Search.
Any rough estimation time/date of this update release would be very helpful.
Thank you.
Hi hcfs,
Well under the perfect circumstances, we can add such an update in 12 months, but we cannot promise anything, as the dev plans can change at any second.
Best Regards,
- Victor
Hi Victor,
Thank you for the update. That’s longer than what we expected. But, thank you very much for being open about the project. I’ll bring this to our team discussion.
Best Regards. Thank you.
hi, I have the same issue but with any theme even default theme, I tested on ‘Twenty Nineteen’ with woocommerce plugin only. I enabled ‘apply mode’, settings are:
Where to filter? -> ‘Product Categories’ ‘Any Category’
And what to filter? -> I tested both which available ‘Product query’ and ‘Product query. Main Query.’
Alternative Location -> ‘The same page as for filtered posts’ ‘— No page for selection —’
Button ‘Apply’ always contain some wrong category, for example:
I’m on page ’/product-category/destinations/’, or on page ’/product-category/destinations/jamaica/ocho-rios/’ – button ‘Apply’ always contain wrong URL ’/product-category/destinations/colombia/cartagena/’. If I delete this category ‘cartagena’ then button ‘Apply’ will contain some other wrong category. I spent a day trying to find any info in docs and in this codecanyon answers, but I couldn’t understand why button ‘Apply’ works wrong.
I found the same piece of code and when I commented this line button ‘Apply’ works correct:
$base_permalink = flrt_get_location_permalink( $location, $wp_page_type, $post_type );
It seems so weird that Pro version breaks button ‘Apply’.
Could you help please?
Hi destify-marketing,
Could you please check the version of the plugin you are using? Try to update to the latest version (1.7.15) of the plugin which you can download here. We tested it and everything is working well, but on older versions of the plugin, such an issue may occur.
Please create a DB backup before updating the plugin in order if something goes wrong so you always can return to the previous state.
Best Regards,
- Victor
Victor,
this helped, thanks! Latest version without such bug.
My license is not working. Please help!
Hi ibenitez,
It seems that your server does not allow connection with our license server. We can activate it on our side, but we need the following things from you:
1. Credentials to your /wp-admin following this document
2. And your license key. (not the CodeCanyon purchase code)
Please, send all these via PM.
Best Regards,
- Victor
Hi there,
I just installed the plugin and I want to filter a custom post type. But when setting up the filter it says: No WP Queries matched the post type “research” found on the page.
But I can’t select any other option from the drop down ‘And what to filter’?
The filter shows on the page with a shortcode, but the results are missing. Please help!
Hi rickaahz,
Thank you for choosing Filter Everything PRO.
Most like you have chosen the wrong post type here – https://prnt.sc/RX8-ype8ZqjV which is caused by the No WP Query.
Best Regards,
- Victor
Hi Victor, thanks for the reply. Everything was setup correctly. But it does not do what I want to achieve, please see my comment from 37 minutes ago!
Best Regards,
- Victor
Hi, I have issues with the license key (unknown error) I wrote you a PM with credentials.
Hi fphutopaz,
Thank you for choosing Filter Everything PRO.
Thank you for the credentials, please send the license key as well via PM.
Best Regards,
- Victor
Hi, just sent it, thanks.
Hi fphutopaz,
We get only credentials but we didn’t get any license key yet. Could you check it, please?
Best Regards,
- Victor
Yeah sure, how about now?
The license key is activated and everything is working well.
Best Regards,
- Victor
Hello, Pagination is not updated to reflect the changes of the number of posts after filtering. I’ve tried it with and without AJAX
I also tried every possible way to include both the pagination links and the products in the wrapper
Hi evanv_yt,
It seems that pagination is not compatible with our plugin and making some type of the copy of query and using it without taking in fact the filtered elements. Could you send the link to the page with the issue si we can check it?
Best Regards,
- Victor
Sorry it doesnt worky totally and the worst part is I CANT EVEN REMOVE YOUR PLUGIN. It keeps failing to remove it.
Verwijderen van: Er heeft zich een kritieke fout voorgedaan op deze site.Meer informatie over probleemoplossing in WordPress. mislukt
Hi varan,
You need to remove the filter set via FTP, and could you please check what PHP version do you have on the server? If it is higher than 8.1 please downgrade it to 8.0 or 8.1 in order to make plugins work normally.
Best Regards,
- Victor
Hello !
I use your plugin on a new website still in development : http://abac.art/ventes-a-venir/I need to order items differently (total custom ordering), which is not by name, post count or term ID.
This is what I need :
Type : Peinture Sculpture Photographie Autre
Style : Art classique Art de transition Art contemporain
Periode : Début XXe 2019
this period filter is a custom field from ACF, it will have many different period I would like to be able to order it by myself.
Could you help me with this ?
here are credentials :
/connect-abac damien Kokal5959,,!
Thanks !!
Hi Damien_SW,
Thank you for choosing Filter Everything PRO.
There is the possibility to use the ‘wpc_terms_before_display’ hook to sort terms to your needs via code modifications. More information you can find here – https://filtereverything.pro/resources/hooks/#terms-before-display-hook
Here is the code example for a custom color oredring:
add_filter('wpc_terms_before_display', 'wpc_sort_terms_as_needed', 10, 2);
function wpc_sort_terms_as_needed($terms, $filter){
// pa_color - is desired taxonomy
if ($filter['e_name'] === 'pa_color') {
// Define the custom sorting order
$customOrder = array(
'red',
'blue',
'green',
'purple'
);
// Create an associative array to store term objects
$termMap = array();
// Populate the term map
foreach ($terms as $term) {
$termMap[$term->slug] = $term;
}
// Sort the terms based on the custom order
$sortedTerms = array();
foreach ($customOrder as $slug) {
if (isset($termMap[$slug])) {
$sortedTerms[] = $termMap[$slug];
unset($termMap[$slug]);
}
}
// Add any remaining terms to the sorted array
foreach ($termMap as $term) {
$sortedTerms[] = $term;
}
return $sortedTerms;
}
return $terms;
}
Basing on this example you can create a custom order for any of the needed terms.
Results can be seen here – https://prnt.sc/pYxJUGe6tXVM
Best Regards,
- Victor
Hello, c
thanks for your answer. Can you tell me where I should add this code ? Which file and should I use child theme ?
Hi Damien_SW,
It should be placed in the functions.php and you should rewrite it to your needs. But if you do not have enough dev skills, you can hire a dev to do it instead of you, using such platform like Upwork.
Please note that we do not provide or debug custom codes, as it is out of the scope of support policy here on the CodeCanyon.
Best Regards,
- Victor
Hello, i bought the pro version, but i can’t activate it, it says unknown error. And yes, i clicked on “get yout license key” and logged in via envato to retrieve it.
just sent a PM with the credentials and license key .
Hi mastahtheboss,
The plugin was activated and everything is working well.
Best Regards,
- Victor
I just bought the pro and the license giving to me isn’t working.
Hello ibenitez.
Thank you for choosing the Filter Everything PRO.
Please, note that License key and CodeCanyon purchase code are different things. To set License key, please go to Filters -> Settings -> License, click on the “Get your License Key” https://prnt.sc/-ehm9df3H_XT and you will be redirected to the new page. Log in there with your Envato credentials and you will see your License key for the Filter Everything PRO plugin.
Thank you. Regards.
- Andrii.
Hi, just go the plugin after trying out with your free version but I’m having issues with the filter set. I created a filter set and will be using to filter my Classified Listing (and woocommerce product page). Now, related to filtering Classified Listing plugin entries, when I try to update the “Alternative Location”, or anything at all in that filter set, it simply does not update. Hoping for some help asap, thanks (in fact, doesn’t even work anymore to add a new filter set)
Hi jessicasenhorinha18
Thank you for choosing the Filter Everything PRO.
It sounds like you have an incompatibility issue with another plugin or custom code.
Please, send us credentials to your /wp-admin in accordance with this document and we will try to solve this issue.
Thank you. Regards.
- Andrii.
jessicasenhorinha18
Thank you for the credentials you provided.
The problem when you can’t update a Filter Set related with the bug in the latest WP User Frontend plugin. Please see error message text – https://prnt.sc/4TGQo8a_vCTJ If you deactivate the WP User Frontend plugin, all works fine. I recommend you to ask this plugin support to check this issue and fix it (you are not the first customer who faced this issue)
Also I disabled the “Alternative Location” option for your Filter Set as it seems you don’t need it and now filter works as expected. Please, check it on your site and let me know if you have any questions.
Thank you. Regards.
- Andrii.
I haven’t sent ANY credentials yet. In fact, I wrote the message and never sent it since I was waiting for the backup to finish up.
Does your plugin not support hierarchy and multi-option to click when opening dropdown menu?
Dropdown with hierarchical and multi-selection is planned but haven’t implmeneted yet. These features will be in the future plugin updates but definitely not faster that in next 3 months rather in 6-month or more period.
Hello!
Here’s my problem. I have created a filter set for filtering Products post type. Using Woocommerce, btw. But for now, I’ve got a “No one Filter Set is related to this page. You can configure it in the Filter Set -> “Where to filter?” field.” message a few times, and even when I set it to the right page, it’s not showing up.
But, I’ll be more specific. I’m using Astra Pro theme, and I created custom layout for mega menu. In there, I couldn’t find “Filter Everything” widget, simply not on the list, so I tried adding a shortcode. When I did that, I got the error I mentioned above, no matter what I choose for “Where to filter?”.. I selected front page, Custom Layouts (that’s the Astra’s post type in use for this), mega menu, Page. So, when I switched it to “Shop”, it did show up but the wrong filter, even though I’ve added “id=” parameter to the shortcode, it just ignored it.
I couldn’t get this to work anyhow. I tried setting up that filter set on Shop or front page sidebar and still, it’s not showing up.
Also, even though I’ve set this filter set to filter Product post type, when I click on ‘add filter’ I don’t see Price anywhere in the list, only categories, and product attributes.
Can you, please, help me out with this cause, even though I like what you did and so far I’ve used the non-pro version, for this site I need more customization, and seems like this isn’t a good solution so far. Thanks!
Hi danilitto,
Thank you for choosing Filter Everything PRO.
You should specify the location of the page/category and etc in the “What to filter” dropdowns, for shop it is “common WordPress pages” + “shop”, for custom pages it is “pages” + “my custom page”, for categories “my product categories” + “my category”.
The id in the shortcode does not specify which filter will be displayed (the id will be removed soon from the shortcodes). If you have a couple of filter sets on the one page you “priority” settings at the bottom of the filter set settings, the filter with higher priority will be shown in the widget first.
You can add a price range slider by the “Custom Numeric Field” using the meta key of the price, for the Woo default meta key for the price is _price more meta keys you can find here on the filter set setting page – https://prnt.sc/bBavm4i4s8Rk
Best Regards,
- Victor
Pre Sale question: is there a way to let the plugin filter all the categories … even if we are on specific category page ?
Example: in your demo blog, you have these categories:
- Health
- Beauty
- Food
Health is the parent , but if i land directly on the Food category … i can’t filter back to beauty directly . This is the only thing that is pulling me back , because so far your plugin is perfect for my needs, but i need to fix that .
just bought the pro version, but i have problems with activating it, it says “unknown error”
Hi mastahtheboss,
Thank you for choosing Filter Everything PRO.
Yeah, because you are browsing through different categories pages, you can use breadcrumbs to return back to the main category and filter items there. Because in another case you always would see all of the products as you do on the main category page.
It seems that your server does not allow connection with our license server. We can activate it on our side, but we need the following things from you:
1. Credentials to your /wp-admin following this document
2. And your license key.
Please, send all these via PM.
Best Regards,
- Victor
Hi mastahtheboss,
The plugin was activated and everything is working well.
Best Regards,
- Victor
Hello! I am trying to filter my posts by categories on a page. I can see the filters on the page, but I dont see anything to come up.. How can I see all my posts in a page and use the filter? I mean I have multiple posts with different categories. And I have a page, where I want to use the categories filter, to only see those posts whats includes that actual categorie(s). Thanks for the help in advance! Zoltan
Hi Zoltan,
Thank you for choosing Filter Everything PRO.
Not exactly clear what you mean by “I can see the filters on the page, but I dont see anything to come up” Our plugin doesn’t display posts it is only filtering them. So if the category page has some amount of posts and you apply the filter set to that page/category it will filter those posts.
Just like here – https://demo.filtereverything.pro/category/health/ if you remove the filter plugin from that page only the filter from the sidebar will disappear.
Try to specify the correct query in the “And what to filter” dropdown setting in the filter set. In case the filtering isn’t working.
Best Regards,
- Victor
Excuse me, i dont find sort widget. I use classic editor. Thanks
Hi fbertini1,
Thank you for choosing Filter Everything PRO.
If you are referring to that you cannot find the sorting widget in the widget area using the classical editor it is shown like this – https://prnt.sc/UOEoflYzAEKW
Best Regards,
- Victor
Hi, I’ve upgraded to the pro version but doing so has caused the filter to stop working on the front end. When I select a filter, I’m redirected to the pretty URL but it causes a 404. I’m using in combination with Elementor Pro.
I’ve had to deactivate FilterEverythingPro and stick with the free version but I’d like to reactivate it. What’s causing the 404 issue and how do I resolve it?
Thanks, Ben
Hi cameracrate,
Thank you for choosing Filter Everything PRO.
Looks like a conflict with a plugin or some type of custom code that causing such an issue. Could you please send the link to the page where you are having the issues?
Best Regards,
- Victor
Yes, we see the issue, please provide the credentials to the wp-admin dashboard following this document so we can check it.
Best Regards,
- Victor
Wonderful, thank you. Credentials sent over.
Any update on this?
Hi cameracrate,
We will provide the information on this issue in a couple of hours today, as it needs additional checking. It seems like some conflict with the custom code or the certain plugin.
Best Regards,
- Victor
Update.
The issue is in the permalink manager pro plugin, to make it work you can either turn off the PMP plugin or add this to the functions.php define( ‘FLRT_PERMALINKS_ENABLED’, false ); so instead of URL with applied filters like /some-brand/color-red/ and so on you will see the GET parameters. But it will work and filter everything. Our permalinks in the plugin and the PMP plugin are not compatible.
Best Regards,
- Victor
Hi, it’s very urgent. When I try to add the Custom Fields in Filter Pro it’s not showing the data. But it shows the count but when we click on the check box it’s showing no data. Pls, give me the solution.
Hi logakarthikeyan,
Hi, it’s very urgent. When I try to add the Custom Fields in Filter Pro it’s not showing the data. But it shows the count but when we click on the check box it’s showing no data. Pls, give me the solution.
Is the data not shown in the filters widget as filter terms or data as products? How and where does it show the count if it is not showing the data?
Provide more info on “when we click on the check box it’s showing no data” Do you mean all of the products or posts are disappearing from the page or what type of action is happening?
Please send the link to the page with the issue so we can check it.
Best Regards,
- Victor
Have you edited the names (meta key) of those custom fields? After they were created?
Best Regards,
- Victor
Hi, I wondering if it’s possibile to customize sorting options based on woocommerce category. In my case I set up a shop with categories “Car sales” and “Car rental” and i need to add only sorting option “price” for Car sales products and “Rent category” for Car Rental products. Thank you
Hi Funkwarrior,
Thank you for choosing Filter Everything PRO.
A bit confusing, how exactly are you trying to customize settings based on Woo category? You have two categories “Car sales” and “Car rental”. Do you mean that for one category you only want to place a sorting by the price and for the second category sorting by the rent category?
Best Regards,
- Victor
Hi victor, I’m sorry I didn’t explain me well. By “rent category” I mean a rent price range (“cheap price range”, “medium price range ”, “luxury price range” as an example) linked via taxonomy ACF to the product. Otherwise yes, I want to add sorting by price only on “car sales” and rent price range only on “car rental” along with alphabetical and date sorting options. Thank you
Well, you can create two sortings widgets add all of the needed sorting options by meta key and etc, in the widget area, and check their id – https://prnt.sc/MGsiAdWWZjX6
Then add this example of the code that will take in fact Woo categories by their slug and return the corresponding shortcode:
function category_based_shortcode($atts) {
if (is_product_category('laptops')) {
return do_shortcode('[fe_sort id="10"]');
} elseif (is_product_category('electronics')) {
return do_shortcode('[fe_sort id="7"]');
} elseif (is_product_category('other_category_slug')) {
return do_shortcode('[shortcode_for_other_category]');
}
// Default output if no matching category is found
return 'No matching category shortcode found.';
}
add_shortcode('category_based_shortcode', 'category_based_shortcode');
And place the shortcode of the code above – [category_based_shortcode] on the needed place where you need your sorting to appear. For testing purposes we simply place it in the widget sidebar – https://prnt.sc/Kf_7-lbhwgNS
and here is the result for the laptops category – https://prnt.sc/TgQD8QgGUOCg
and this is for the electronics category – https://prnt.sc/2PXYJ5CClCwK
Please note, that this is just an example of the code, not a 100% working solution it is just to give an idea of how you can implement it. You need to rewrite it to your needs and do it by all of the standards, so it won’t be buggy and etc.
Best Regards,
- Victor
Thank you for your reply Victor, I will look into it. Great work on your FE !!
It works! Thank you!
Hi Funkwarrior,
I’m glad that your problem was solved.
If it is possible I would be thankful for a positive review about the plugin here on CodeCanyon – https://codecanyon.net/item/filter-everything-wordpress-woocommerce-filter/reviews/31634508
Thank you in advance!
Best Regards,
- Victor
Done! Thank you Victor!
Hi geetjain29,
It seems that your server does not allow connection with our license server. We can activate it on our side, but we need the following things from you:
1. Credentials to your /wp-admin following this document
2. And your license key.
Please, send all these via PM.
Also with credentials we can check the issue with filtering that you have.
Best Regards,
- Victor
Already sent credentials please check
Thank you for the credentials, please send the license key via PM as well.
Best Regards,
- Victor
thanks for your reply i also sent the key please check
We have activated the license and everything is working well.
Best Regards,
- Victor
Popup not working in mobile device
Place the [fe_open_button] next to your filter widget shortcode and test it.
Best Regards,
- Victor
Sorry man, but i am totally not happy with this plugin. It is so complecated and it doesnt work. Also we have tons of colors and id says only Black (2). Instead of all colors and at least of products per color is like 30. When you click on size it says
It appears that this page does not contain a container with the specified «HTML id or class of the Posts Container». Try to specify the correct one in the Filter Set settings or the common plugin Settings.
etc. etc…not good.
Hi varan,
Thank you for choosing Filter Everything PRO.
That’s not a problem, please describe to us what you cannot understand in the plugin and we will provide you with all of the needed information.
Also, please provide the link to the page with the issues so we can check.
“It appears that this page does not contain a container with the specified «HTML id or class of the Posts Container». Try to specify the correct one in the Filter Set settings or the common plugin Settings.”
This message means that if you turned on AJAX functionality, you need to specify in the «HTML id or class of the Posts Container» the class or the id of the products that should be updated by AJAX. You can find the needed class of products container via inspector in your browser on the specified page.
You can provide the credentials to the wp-admin dashboard following this document so we can help you to set up the filter set with all the needed settings as example.
Best Regards,
- Victor