8956 comments found.
Hi! I just bought your plugin today, and I love it so much! This is by far the best filter plugin for woocommerce without a doubt!
One question: How can I make a labeled list / checkbox filter with pre-grouped product prices? i.e. clickable pre-defined groups of price ranges like below
- under $5
- $6 – $10
- $11 – $20
- $21 – $50
- $51 – $100
- $101 and more
Thanks for your support!
Hi kota2,
Thank you for choosing Filter Everything PRO and for your kind words.
You can create an ACF custom field with select and put the provided options there and basically choose those options on the needed products that fall under this price. Then create a filter set by this custom-filed meta key.
Or write a custom solution, which will analyze the current URL, and each option will add to the URL its get parameter with the min-max price. But that would be a bit hard.
Best Regards,
- Victor
Hi, I just purchased your plugin and everything works well but I have two questions. It is regarding this site: https://staging.holycargo.ch/brands
1. You can click on th eimage of each bike and open a popup with all the details on it. Once I select a filter the popup doesnt open anymore. When I reload the page, it works
2. How can I set an individual text on the Dropdown Menus? – Select Brands – I would like to change that.
Thank you and best regards
Hi phillencolin,
Thank you for choosing Filter Everything PRO.
The resolve the first issue please check this page – https://filtereverything.pro/resources/ajax-related-problems/
1) To translate it with the Loco translate plugin or other software if you use a non-English language on your site.
2) To use the Templates Overriding feature https://filtereverything.pro/resources/templates-overriding/ to override the dropdown.php template and replace the string.
3) To use hook ‘wpc_dropdown_default_option‘ if you are familiar with PHP development. Here is an example:
// Define a custom function to modify the default option text
function custom_dropdown_default_option($default_option, $filter) {
// Modify the default option text as needed
$modified_default_option = sprintf(__('My custom text: %s', 'filter-everything'), $filter['label']);
return $modified_default_option;
}
// Hook the custom function to the 'wpc_dropdown_default_option' filter
add_filter('wpc_dropdown_default_option', 'custom_dropdown_default_option', 10, 2);
Best Regards,
- Victor
Hi Victor
Regarding Point two with the naming, that went well. Point the Ajax problem surpasses my knowledge! Can you give me a hint?
Hi Victor, could you help me out with the Ajax problem? I dont have the knowloedge to solve that problem
Hi phillencolin,
jQuery(document).on('ready', function(e){
bricksInteractions();
});
This is the code you need to insert somewhere on your site, or in some custom JS file. You can also insert it in footer.php between <script>...</script> tags
This should solve your problem after AJAX loads the filter results.
Best Regards,
- Victor
Hi Victor, thank you for you help! This worked now!
Hi Victor, sorry, I was a bit too fast… It is very random, but after selecting a filter it opens up like two popups at the same time and the popup on top is without styling and content. Tried with Chome and Firefox. Have a look for yourself, klick through or reload the page couple of times: https://staging.holycargo.ch/brands/
Hi phillencolin,
Yes, it looks like it is duplicating it, but in general, what you should do, is to find the correct event on the click and replace it with the one that we provided. Since we checked all from the browser.
Best Regards,
- Victor
Hi Victor, I contacted the Bricks developers about how I can find the correct event, this is what I got back:
To solve this issue, the plugin developer should provide an event after each filter response from the server, instead of jQuery ready event.
Example: If the plugin always dispatch an event like jQuery().trigger(‘ajax-completed’) after the success AJAX calls.
Then you can use this code: jQuery.on( ‘ajax-completed’, ()=>{ bricksInteractions() })
Unfortunately I dont know what to do, do you know how we can solve this?
Sorry for all the inconveniences and appreciate your support
Hi phillencolin,
We’ve sent this to the development team and will update you as soon as we get an answer from them. Apologies for any inconvenience.
Best Regards,
- Victor
Hi Victor, thank you very much!
Hi phillencolin,
Can you please send the credentials to the wp-admin dashboard following this document so we can check it? Also, send the place or instruction where have you added the code that was previously presented.
Best Regards,
- Victor
Hi Victor, I sent you everything!
Hi phillencolin,
Thank you for the credentials. First thing first, please use an older version of the PHP like 8.0 or 8.1 but not the latest version as half of your plugins do not work correctly because of it. When you will downgrade the PHP version please let us know so we can continue.
Best Regards,
- Victor
Done! 
It seems like you have some prefix issues as well in the filter set.
Best Regards,
- Victor
Hi, yes, I noticed that aswell and changed the prefixes. I tested everything, but the problem still persists…!
Hi phillencolin,
Yes, unfortunately, we couldn’t get to the root of the issue yet, and for all the previous situations everything was working correctly, this is a unique situation, for now on you can disable AJAX and it will work as intended, until we find the root of the issue.
Best Regards,
- Victor
Any News?
Hi phillencolin,
Unfortunately, we haven’t received any updates from the development team regarding this matter. It’s possible that the issue is more complex than initially anticipated, and it may take longer than expected to resolve. We apologize for the inconvenience and appreciate your patience as we work to address this issue.
Best Regards,
- Victor
Hi Victor
My deadline for delivering is getting closer. Actually, I have 2 weeks from now. Do you think we can still get a solution with the developer team, or should I look for an alternative? Unfortunately, I can’t change the way of showing the product details in a popup… And the other problem is that Ajax is a must…!
Hi phillencolin,
Yes, honestly from our side we can’t do much here. As those events are applied from Bricks builder on your elements. And it doesn’t matter which plugin you will use, but if the page will be updated with AJAX those events would need to be reatached again.
It is really worth asking Bricks support, how to reattach all of those events/interactions that were applied on elements after the page is updated with AJAX.
Best Regards,
- Victor
Hi Victor, I am so sorry, but for my client Ajax is a must. I habe to find another solution filtering then… Is it possible to get a refund? Best regards
Hi phillencolin,
Another solution that uses AJAX will give you exactly the same results. The problem is not with the plugin, but with the fact that the applied events are not attached after the AJAX update. The problem is that it’s not the best way to create a page using the builder and then look for a way to re-attach those events since they are not encapsulated.
More materials about it here:
- https://itecnote.com/tecnote/javascript-jquery-event-wont-fire-after-ajax-call/
- https://copyprogramming.com/howto/jquery-event-won-t-fire-after-ajax-call
In general, a refund is possible by creating an appropriate form from your account.
Best Regards,
- Victor
Hi, I didn’t get the refund. So I will try to find another solution with you. Lets see how we do that!
I tried everything with a popup without dynamic data and that works well. Then I used a Plguin to create a dynamic Popup. I tried it with the filter from WP Grid Builder and that actually worked well with Ajax. So I tried it now with your Plugin, but after the filter is being applied the Popup doesnt open anymore. Here would be the page: https://staging.holycargo.ch/brands
Hi phillencolin
We added a solution to the functions.php file and added a comment to it as ”// reattach lightbox events after AJAX Update” so you can check it there. Now everything is working as it should.
Best Regards,
- Victor
Dear, We tried to setup the filter on mobile but its not showing in dropdown. We already followed the steps available in faq but not showing. Can you help?
Hi mrijnwal,
Thank you for choosing Filter Everything PRO.
Can you send the link to the page with the issue so we can check it? Also, please provide more detailed information on “it’s not showing in the dropdown” perhaps any screenshot?
Best Regards,
- Victor
Is it possible to remove a chip set for a specific filter set?
(So if there’s two filter sets on on page, just to remove one chip set)
Hi centrable,
Actually, you can place a shortcode of chips and use the ID of the filter set to display the only chips from the needed filter set, more about shortcodes is here – https://filtereverything.pro/resources/shortcodes/
If you are using the widget area, you can turn it off from there – https://prnt.sc/xQB50qsIYz5W
Best Regards,
- Victor
Hi,
I have added the filter for a few different post types and they are working great. However I am having an issue when I add the filter onto my homepage https://agrivercruises.co.uk/home-2/ as it not pulling through any data.
Here is link to see screenshot of how i have setup the filter:
https://agrivercruises.co.uk/wp-content/uploads/2023/09/screencapture-agrivercruises-co-uk-wp-admin-post-php-2023-09-14-11_50_59.pngHi alanbrysoncom,
An update to the answer seems like that custom field is not applied to the “Packages” posts. We have added the new filter to the filter set which is duration and it is working correctly. https://prnt.sc/KLPKHgjwoh5B
Best Regards,
- Victor
Sorry dont think I was clear on what I meant. I am wanting a search bar on the homepage but not to display the results on the homepage. I want it so that the user searches on the homepage and it then redirects them to the search results. The post type i want to query is cruise offers. Also how do i have the search bar appear horizontal on the homepage ?
many thanks
Hi alanbrysoncom,
Yeah, that’s an absolutely different case. But what is the page where you need to be redirected? More likely for this purpose you need to place your own theme search bar and when you are going to search for something it will redirect you to the search page and on this search page you can place the filter widget. Our plugin search field searches on the page where all of the products are already displayed. It will not work like a standard WP/Theme search bar.
Best Regards,
- Victor
Hello, I have purchased the pro license but when I go on Wordpress it is still saying I have the free version and need to upgrade. Please tell me what I need to do in order to get access to the full version.
Hi nickm126 ,
Thank you for choosing Filter Everything PRO.
You need to download a plugin file from here and install it via the admin dashboard please follow this instruction – https://filtereverything.pro/resources/installation/ Uploading via WordPress dashboard
Do not forget to activate the PRO version in plugins.
Best Regards,
- Victor
Thank you, I have now downloaded the PRO version. Unfortunately it is saying the license key is incorrect. My Item Purchase Code: 94cd3836-bc0e-4819-bd03-636c27d218d9
Please check this page about common license key issues – https://filtereverything.pro/resources/license-key-issues/
Best Regards,
- Victor
Still not working. When I enter the license key it says “Invalid license key. Please enter correct license key.” I have checked with my web host and they have said “The error message is to do with the license key not the server. I have checked the logs and the server isn’t actioning anything when the license key is entered.”
Please can you generate a new license key?
Hi nickm126,
In order to check the issue we would 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, these have been sent via PM now.
Hi nickm126,
Thank you for the credentials. But we still need a license key.
Best Regards,
- Victor
94cd3836-bc0e-4819-bd03-636c27d218d9
Hi nickm126,
This is a purchase code, not a license code, and we do not recommend posting it for everyone, please use PM – https://codecanyon.net/user/stepasyuk and send the actual license key.
It is important to keep in mind that the License key and CodeCanyon purchase code are two different things.
If you need to set the License key for the Filter Everything PRO plugin, simply head to Filters -> Settings -> License and click the “Get your License Key” button.
It will take you to a new page where you can log in with your Envato credentials (with an account where you have purchased the plugin) and obtain your License key. It is a simple process but if are having any issues (automatically logging in with another account) simply use incognito mode in your browser.
Best Regards,
- Victor
Hello, the plugin works correctly in the normal version, but I would like to ask how to set the class ID correctly so that we can use AJAX filtering. Even when I tried entering different page IDs of container (now is set to ”#main-content”), where the products are displayed, the message “This page does not seem to contain a container with the specified «CSS id or post container class». Try to enter the correct one in the filter set settings or in the plugin settings.”.
I use Elementor PRO and the products are displayed on the page classically via the Product Archive widget. Please, you can look at it on the page https://www.atomart.cz/obchod/ and help me…
Thanks a lot,
George
Hi George,
Thank you for choosing Filter Everything PRO.
On the provided link to the page, the correct container class should be .elementor-element-e9e45ff – https://prnt.sc/kqPTR_AN8rDZ
Best Regards,
- Victor
Thanks for the reply, the setup works… I tried this ID, but I put a ”#” at the beginning and it didn’t work. How a dot can change everything
Thanks for the quick response and great work on the plugin. Best regards, George.
Hi George,
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!
Is it possible to use a swatch image on one filter but not another? If there are two (same field) filters on the page?
For example, I want a top filter to display images but another filter set (on the same page, with the same filters) to display just text
Hi centrable,
Not really as it is a global setting, but you can hide it using CSS for the needed filter.
Best Regards,
- Victor
Hi we have purchase your plugin and found problem with on sale filter using _sale_price its not working, i know why its not filter since another similar question not answered. Question: 1). so my question is how to keep GET params stay not altered/removed after select category or brand filter? example: i have get params “oder_by=onsale”
2). how to keep category in hierarchy like in your demo page? in our setup it show as flat.
SUGGEST/BUGS after submit/click update and there’s error on creating filter set (ex: error using existing slug), the update button disabled. so it will need to reload page and last filter created was gone.
Thanks
Hi dgdonline,
Thank you for choosing Filter Everything PRO.
1) Please check how to create on sale status filter correctly – https://prnt.sc/DOio3RqGxInL
2) And this is how you can turn it on to show hierarchy – https://prnt.sc/WhIGM5NK5bue (please note that it is working with the checkboxes only at the time, but with future updates it will work with other options)
About this bug, can you send us credentials following this document so we can check it? Also, please provide instructions on how to make this bug appear so we can test it exactly to your instructions and fix the issue.
Best Regards,
- Victor
SS assign invalid value = https://prnt.sc/mO66_iHNfEOG SS error message & button disabled = https://prnt.sc/BolQ4E8bZPsi
1) Did you import those products? Or maybe you migrated the full site? The plugin takes all of the data from the database, so you can try to update any product and check if it will appear on sale or not.
2) Interesting, we just tested it on our side, and here are the results – https://prnt.sc/8q-tb9BAexT- we clicked a couple of times and everything is working correctly. The button doesn’t get disabled, can you check the console perhaps there are any errors since we do not have access to the site to check it on our own.
Best Regards,
- Victor
Can we establish a private session so we can exchange site access
You can follow this document instructions to create credentials and send it to us via PM. (In the 4th step you can find a link to send it to us via PM)
Best Regards,
- Victor
we just sent credential as your instruction, hope got good result
Hi dgdonline,
1) You have a JS conflict with a certain plugin on your site and it duplicates all actions on the Update button. As a result, it becomes inactive. An example of JS errors in the console – https://prnt.sc/xDqBtdt81LyT We can recommend you turn off 50% of the plugin and test the workability in order to find the plugin that causing this issue.
2) On-sale issue – as we mentioned if you go to any needed product put a sale price hit update then delete the price and hit update they will not be anymore on sale status. As they will be changed in the database. So this is a pure issue with products, perhaps after importing, usually such issues are appearing.
Best Regards,
- Victor
i believe using the meta key method was the problem, because using another plugin “Woocommerce Product search” its working smooth, i just enable the on sale checkbox under FH widget (also had onsale checkbox with number of item). https://prnt.sc/PrRFiuQffyfr
your plugin has working smooth except on sale in our case and i see its happen on another customer seen in support comment. since on sale is mandatory i suggest use another method like using woocommerce method wc_get_product_ids_on_sale
Please check on sale filters now if everything is working correctly. We set up a Test filter which you can delete after checking.
Best Regards,
- Victor
could you please refer to the page the test is on?
The filter is set to Any Product Category. So you can visit any product category where there are any products on sale and test it. For example this one https://nss-acd.jitze-sgp.acdtest.com/product/lash-brow/
Best Regards,
- Victor
btw you already had great filtering framework, this reminds me to ACF and WPallimport, if you have dynamic filter based on custom functions that will amazing, for example to get another onsale method we can add function to include only listed product ID dynamically based on woocommerce method not rely on wordpress method, another word your plugin will have ‘unlimited’ filter
Please check on sale filters now if everything is working correctly. We set up a Test filter which you can delete after checking.
Best Regards, - Victor >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> it works! But when enable category filter it not show any category (it has sub category) what happen?
Hi brettmwillis,
We have checked the site, and there can be potentially two issues, one is with caching and that’s why they are not appearing correctly and the second one is that each cat page has a unique query. In order to test it all turn off all of the plugins just leave FE and Woo to test workability. Clean all of the possible cache everywhere go to the filter set hit update and test it. That would be the fastest way to find the problem.
Best Regards,
- Victor
Hello, I can’t filter variants by color.
Filter: Product color, check “Use for variations” is set. Products with color variations are available.
But the filter shows: “There are no filter terms yet”
Hi roge-22,
Perhaps you choose not to correct WP_Query from inside the filter set the setting in the “And what to filter?” dropdown, please try to choose another query hit update, and check its workability.
The second issue that might be in your case is that you didn’t apply those colors to any of the products yet, or try to update the products with the color attribute and update the filter set also.
Let us know if it fixed the issue.
Best Regards,
- Victor
Thanks! There are products in this category that have the colors stored. I’ve also already tried out the WP_Query. I also tried checkbox or dropdown.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
done, thanks Victor
Thank you for the provided credentials.
Here is your issue, you have created some attributes not sure from where – https://prnt.sc/QDmz-tnVToDW the red one that you have the green one that we added from existing ones that you have in the Products -> Attributes – https://prnt.sc/RaAablv5bOGR
Create in the Products -> Attributes your color attribute with all of the needed terms and then create a variable product by those attributes.
Best Regards,
- Victor
THANK YOU! OMG, what? Yeah, this is really wrong… I didn’t even see that. (still error 40 – means this person who is 40cm in front of computer)
Hi there,
The plugin is not working for elementor loop grid and custom post type.
Can you please give some solutions.
https://myless15.sg-host.com/experiences/Hi SicuroGroupAus,
Thank you for choosing Filter Everything PRO.
We just checked the site and it seems like everything is working correctly – https://prnt.sc/o8jToWGzqPiy
Best Regards,
- Victor
I moved the project to a WpEngine account and now no filter works. The selector “And what to filter?” does not find any queries Can you help me?
Best regards,
Please see https://delta3.wpengine.com/team/
Hi nicubarbu,
Thank you for choosing Filter Everything PRO.
It seems like a problem that you are caching queries as well, that’s why it is not working. Try to clean the cache and turn off the object cache, then go to the filter set and check for workability. In general, you just need to exclude a couple of things from caching and everything will work as previously.
Best Regards,
- Victor
Hello sir,
First of all, love your plugin. Great work!
Question, How can I add a dollar sign in the filter when using a price range?
Thank you!
Hi pac-nyc,
Thank you for choosing Filter Everything PRO and for the kind words, we really appreciate it.
You can do it with template overriding, more about it you can read here – https://filtereverything.pro/resources/templates-overriding/ for your case you would need to work with the range.php file.
Best Regards,
- Victor
Thank you!
I located the file and the two lines but how can I have it display the dollar sign?
<input type="number" class="wpc-filters-range-min" name="<?php echo esc_attr( $minName ); ?>" value="<?php echo esc_attr( $min ); ?>" step="<?php echo esc_attr( $filter['step'] ); ?>" data-min="<?php echo esc_attr( $absMin ); ?>" />
<input type=”number” class=”wpc-filters-range-max” name=”<?php echo esc_attr( $maxName ); ?>” value=”<?php echo esc_attr( $max ); ?>” step=”<?php echo esc_attr( $filter[‘step’] ); ?>” data-max=”<?php echo esc_attr( $absMax ); ?>” />
Hi pac-nyc,
Well, you will need to rewrite this template to suit your needs and apply your own styles to it. Everything depends on where exactly you want to place that dollar ’$’ sign. Can you show some examples, like a screenshot or anything?
Best Regards,
- Victor
Hi Victor,
I am just looking to add a dollar sign before the value in the price range. see screen shot
https://snipboard.io/HsRVC1.jpgYou can add a span tag with a dollar sign with a margin-right -10px or something close to it and it should do the trick, of course, you would need to add other styles to the span. For example – https://prnt.sc/EToLfQ_lYoSz
In order to add it to the input field you would need to rewrite some code change the input type and use js as well.
Best Regards,
- Victor
Thank you Victor. thats exactly what I need but in the input field. I am not able to code this. Hopefully this will come out in a future update.
Maybe with future updates, we will implement it as a feature out of the box.
Best Regards,
- Victor
Hey Victor,
For future updates, can you please look into a Duplicate/Copy Filter Sets option?
Thank you!
Hi pac-nyc,
Of course, our development team is very positive about adding this feature in future updates.
Best Regards,
- Victor
Hi,
We are having an issue where the filters are not filtering. It was at one point in the past. Here is the link: https://medshadow.org/category/article-category-archives/health-topics-articles/health-filter-juul-or-liver/
Thanks for your help,
Dante
Hi Dante,
Most likely the query on the page has changed, you need to go to the filter set settings choose the correct WP_Query in the “And what to filter?” dropdown and hit update, then check the workability of the filter.
Best Regards,
- Victor
I am facing issue with filter count. when the user select one of the filter, other filters are grayed out (or disabled) and count is showing zero. Even though we have products in that and we wanted to show these products count to users.
I believe this is because there is logic behind the filters where user can specifically find the product by filtering out. But we need solution or any hooks to disable this logic or functionality.
Hi Risingwines,
Thank you for choosing Filter Everything PRO.
Sounds like you are using “AND” logic for a filter, try to change it to the “OR” logic inside the filter set settings in the needed filter “More options” – https://prnt.sc/d9iJuRM6uBHi
Best Regards,
- Victor
Is it possible to have 2 filter sets on one page but containing the same fields?
For example, I want to put a filter set containing ‘size’ on the left of a page but then display another filter set at the top of the page, also with ‘size’?
Each filter set is allocated a different widget but only displays one filter set
Is this possible?
Or how would I go about doing this? (if needs coding)
Hi centrable,
Thank you for choosing Filter Everything PRO.
Yes, it is possible, but they will work together. For example, if you choose any filter term in one filter it will be checked in the second one as well.
Best Regards,
- Victor
This is what I want it to do but it’s only display one filter set or the other – not both? I have set different priorities on each set too. Could you explain the process to create this?
You need to place two shortcodes if you are using shortcodes to display the filter widget and they both will be displayed on the page if you are using a widget area then place two filter widgets there.
Best Regards,
- Victor
It still only displays one filter set or the other, not both. Could you please double check this is possible.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it? Also, please send the link to the page where you want to display those filter sets.
Best Regards,
- Victor
Hi, I wanted to ask if my Pro plugin will work in Staging?
Thanks
Hi fphutopaz,
Yes, you can activate the license on two sites, so it was made like that to use one for the dev and the second for the prod.
Best Regards,
- Victor
great, thanks
Hello,
there is a conflict with FilterEverything and Extra Product Options (https://codecanyon.net/item/woocommerce-extra-product-options/7908619)
When both are active this filter is invisible: [fe_widget id=”195842” horizontal=”yes” columns=”3”]
Thanks for you help.
Hi poolfactory,
Can you please send the link to the page with the issue so we can check it, make sure that you turned on everything and set it all up.
Please note that using the filter ID is not necessary, and with future updates, it will be removed. Instead, you can use the Priority option as ID is only used as a sorting option which filter will be shown first if you are using a couple of filter sets for one page.
Best Regards,
- Victor
Hi Victor,
here is a staging site where you can see the plugin conflict.
https://www.poolfactory.at/1694606101599/produktkategorie/pools/I can grant admin access if you want.
Update: I played around with some settings and it turns out that by activating Extra Product Option some terms are not displayed anymore in the filter dropdown.
Yes, it seems like we need credentials for this case. Please follow this document to create access so we can check everything on the place.
Best Regards,
- Victor
Credentials sent!
Thank you for the provided credentials.
We have checked the site activated the extra plugin as well and set up this filter set – https://prnt.sc/oQiVbNtLZ6gF and everything is working correctly – https://prnt.sc/PwH5CDQzlUKj
It seems that when the plugin is activated it changes the query on the page we have chosen the correct one and everything is working correctly. Also, we set for that filter set priority 10 so it will be main since you have two filter sets for “ANY CATEGORY” You can create multiple filter sets and place them on each product category that you have, since you have different items to sort there.
If there are still some terms that are not displayed in the filter please let us know which one exactly so we can check it.
Best Regards,
- Victor
Thanks for your quick response, problem solved! 
Hi
I am trying to add a filter to my store’s home page. I have selected the page for the filter to apply but the widget still says “No one Filter Set is related to this page. You can configure it in the Filter Set -> “Where to filter?” field.” Please help
Hi reegs36,
Thank you for choosing Filter Everything PRO.
If you wan to set it on your Shop page you need to chose in your filter set settings in the “Where to filter” dropdown either “Commod WordPress pages” + “Shop” (or “Homepage”) or “Pages” + “Your Shop Page Name”
Best Regards,
- Victor
Hello
When I try to add License Key to plugin it gives this message:
“Invalid license key. Please enter correct license key.”
I used Purchase Code
and also when I add filter to any page or product category it can’t be shown
Hi kldalhalabi,
Thank you for choosing Filter Everything PRO.
Please check this page about common issues with license keys – https://filtereverything.pro/resources/license-key-issues/
Can you describe in more detail how it is not showing? Are you using a widget area to display the filter widget or you are using a shortcode to display it? More information about shortcodes you can find here – https://filtereverything.pro/resources/shortcodes/
Best Regards,
- Victor