8955 comments found.
After Buying this plugin can i use it in multiple websites or in a single website
Hi rajatbagaria
Thank you for your interest in the Filter Everything plugin.
The regular license can be activated on two sites, as usually one is prod and the second is a stage. But you can always use both on the prod sites.
Best Regards,
- Victor
Hi jens151
At first glance, we have noted that every time we refresh the Shop page all posts appear in random order. However, this behavior does not appear on the category page where everything is working fine. More likely this is the issue.
Also, if you have a separate Filter Set for the shop page, then you might want to check if you chose the correct query from the “And what to filter?” dropdown.
Best Regards,
- Victor
Hi, on our shop we the mobile widget is not working. We have tried already mulitple things but no matter what we do its not working https://greenandmorestore.eu/shop/
Hi mrijnwal
Try to fix the Mixed content on your site first – https://imgur.com/hH16CxZ
Best Regards,
- Victor
Hello, I’ve installed and configured the Pro plugin on a site I am currently building. I have the filter on 2 separate pages: 1) Portfolio Page 2) Team page.
The Portfolio Page is working great. I have the projects filtering the portfolio post type by a custom taxonomy. https://ojb.redolive.co/work/
The Team Page filter is not working at all. I have it setup the exact same way as the Portfolio page, only filtering a different post type with a different custom taxonomy. The filter loads the taxonomy names just fine, but when I click one to filter, nothing changes. The same list of items shows regardless of the filter. https://ojb.redolive.co/team/I can’t figure out why it would work on one page but not another, with the same setup. Can you see what I’m doing wrong?
Note: This is on our development server, and it’s password protected. Can I send you the credentials in private?
Hi redolive
Perhaps the issue is in the wrong query in the Filter Set that you can choose in the dropdown named “And what to filter?”
You can send the private information via PM – https://codecanyon.net/user/fe_support
Best Regards,
- Victor
Hello, I have bought your plugin and I couldn’t activate my license. Plugin was installed on subdomain for tests. What Can I make to resolve it ?
Hi patrycjuszbrzezinski
Thank you for choosing Filter Everything PRO.
Please follow the instructions from this page – https://filtereverything.pro/resources/license-key-issues/#how_to_get_the_license_key in order to get the license key.
We’d recommend using the browser in incognito mode, to be sure you are logging in with the needed account on which the plugin was purchased.
Best Regards,
- Victor
Hello, I recently purchased this plugin however I am having some issues. On this site: https://www.intrasystems.co.uk/matting-products/ there are filters set up. However, on my dev version the titles (By Use, Location, etc) HTML has <buttons> nested in the title as well as the icons. This does not seem to be appearing on the live version, and the functionality is not the same. We have also had an issue where the filters disappeared. Has anything like this happened before + am I maybe missing something? Thanks.
Hi tarmedia
Thank you for choosing Filter Everything PRO.
Let’s try to break it into parts in order to make it less confusing.
1) You have two sites stage and prod?
2) You set up both sites by yourself, and stage have different functionality than live? If this is the case we are not exactly sure how we can help here.
3) Please provide more detailed information on what you mean by “HTML has <buttons> nested in the title as well as the icons”
4) “the filters disappeared” – do you mean they were deleted from the filter sets? Or do they disappear on the front end of the page? Or any other issue?
Best Regards,
- Victor
Hello Stepasyuk I have purchased your plugin and walked through the comments and documentation to resolve my problem but I couldn’t and need your help.
I have set the filter and added it to the desired page from “Where to filter?”
I tried all the (WP_Query) available as the filter appears and shows the counters of the filter, but the results don’t affect on the chosen page
https://tripidaysegytours.com/egypt-tours/egypt-family-tour-packages/Looking for your further help Thanks
Hi tripidaysegytours
Thank you for choosing Filter Everything PRO.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Hello I have sent the credential Thanks
We have checked the site, and there is some issue with the template that you are using for archive pages.
For example, we created a test singular page – https://tripidaysegytours.com/test-fe-elem-fesupport/lang-japanese/ and everything is working fine here with the display of the needed query in the filter set.
So you might want to debug that template of yours and fix it.
Best Regards,
- Victor
Thanks for your reply. Yes, when I changed the page template I used, it worked fine, but that brings me to another question.
Is there a way where I can use the same filter for all the pages of the same taxonomy instead of creating the same filter for each page of the taxonomy in that case, i will need to create many filters for the same fields for every page
i hope you understand me
If on all taxonomy pages, the query is the same, then you can place the filter set like this: “taxonomy name” + “Any Page with the common query” in the where to filter.
Best Regards,
- Victor
when i do this the field “And what to filter?” doesn’t show the list of the quires it show only the main query and that led to that the filter has 0 results for all the results
i have made an exmple for you after i set to main query https://tripidaysegytours.com/egypt-tours/luxury-egypt-tour-packages/Well, we cannot check it anymore from the dashboard as the credentials were removed.
Best Regards,
- Victor
Ok i have sent you again please check
It takes the first archive page in the lists in order to detect all queries and then uses a filter for that query on all of the pages.
So what we did is changed the name of your category with the addition of 01 at the start of the name in order to make it appear the first in the list. Now it is working – https://tripidaysegytours.com/egypt-tours/luxury-egypt-tour-packages/
Best Regards,
- Victor
so i should keep it with the 01 for only this category so the rest of the categories can import from this or i bring back the name of the category you changed to it’s default without the 01
We’d recommend just creating a sort of “dummy” category with 01something name, where it displays posts following the same pattern of your category that we renamed to 01. So it will be used strictly for configuration purposes.
Best Regards,
- Victor
Firstly so many thanks for your fast response it’s really extreme support, but editing my category with adding 01 is very awful for my search indexing and also the idea of creating a “dummy” category which will be indexed or appear in different filters of my theme doesn’t make sense, so is there another way you can create so that the rest of the categories can inherit from
like iam sure you can set it with some way that beyond of playing with my existing category or adding nosense category. Many thanks
There may be a small update today, which will also include a new “wpc_taxonomy_location_terms” hook, which will allow you to display the desired category first in the list.
Best Regards,
- Victor
Hi tripidaysegytours
We have updated the plugin on your site to the latest version, and added this code in the functions.php in order to make the needed taxonomy term appear first in the lists:
//FE Support make certain taxonomy term appear first in the list
function custom_reorder_tour_terms( $terms, $taxonomy ) {
if ( $taxonomy === 'tour_category' ) {
// Find the term ID for 'Luxury Egypt Tour Packages'
foreach ( $terms as $term_id => $term_name ) {
if ( $term_name === 'Luxury Egypt Tour Packages' ) {
$luxury_term_id = $term_id;
break;
}
}
if ( isset( $luxury_term_id ) ) {
// Remove the luxury term
$luxury_term = [$luxury_term_id => $terms[$luxury_term_id]];
unset($terms[$luxury_term_id]);
// Reinsert it at the beginning
$terms = $luxury_term + $terms;
}
}
return $terms;
}
add_filter( 'wpc_taxonomy_location_terms', 'custom_reorder_tour_terms', 10, 2 );
You can use it as example for other taxonomies and terms.
Best Regards,
- Victor
Thanks so much for your consistent help, really great support, and plugin.
I am looking to purchase the plugin, but noticed it was also included in the website premiumvault.app’s subscription. Is this legitimate or piracy?
Hi concerned-dev
Thank you for your interest in the Filter Everything plugin.
No, it is a pirated version and we did not give them any permission for such distribution. Accordingly, the plugin downloaded from there will simply stop working over time.
Best Regards,
- Victor
Hi,
We set up a multilingual website using polylang. All product attributes and values are translated.
We’ve noticed the filter is using the base url of the main language. Because we are using a multi domain set up with different tld urls, the filter is generating a lot of 404 pages.
https://www.ceralith.be/natuursteen/boordstenen/materiaal-chinese-hardsteen/ is an example of url generated by the filter in the main language, which is correct. https://www.ceralith.be/pierre-naturelle/bordures/materiaal-pierre-bleue-chinoise/ this is an example of url generated by the filter in a translation. Since the url for the translation is certalith.fr a lot of 404 pages are generated.Is it possible to use a relative url structure ( only uri)?
Hi JoelFranssen
Yes, there is an issue with that in Polylang, as they are using a bit custom way to return the needed domain names for different languages, it is not changing it in the default way like WPML does in order to retrieve the needed data. But as far as we know, there should be a fix for that soon.
Best Regards,
- Victor
Could you give me an ETA for the update, please?
Hi JoelFranssen
We just reached out to the development team, and they are currently fully busy with other functionalities, so they are not sure about the release date at the moment. We will inform you right away as soon as we receive any updates on it.
Best Regards,
- Victor
Hi there, I am having issues with the PRO version of the product filter I just purchased. It is not filtering the products correctly, and the number count is also incorrect. How do i contact you for support? I have screenshots of what is happening. Thanks.
Hi wennie2
Thank you for choosing Filter Everything PRO.
Did you follow the QuickStart guide – https://filtereverything.pro/resources/quick-start/ it is a very important part as it helps to understand the basic and most important settings of the plugin.
If it won’t help, please send the credentials to the wp-admin dashboard following this document so we can check it.
Best Regards,
- Victor
I asked this question a few days ago, but not sure your response understood the question… rewording for clarity:
Is there a way to set a filter value by default when the page loads?
e.g. we’ve added a filter on _stock_status and want to default to showing “in stock” products when the page loads.
Note: we want to keep the filter; we don’t want to just show in stock products. —we want the customer to still be able to switch between in stock and all products, but have the value of the filter on page load set to in stock.
Is that possible?
Hi 6qtc9cqy5c
Only by the URL. For example, you have a shop page with filters, and by default, you want some filter to be chosen like stock status, you choose that filter and copy that URL with the filter, and then use that link for your shop page.
There are no other ways.
Best Regards,
- Victor
Is there a way to change the urls
from
/format/like/this/
to
?something&like&this
and to us ajax/js rather than physical links for the filter options?
Hi centrable
The only thing that you can do from the list is turn off the friendly URL permalink manager from our plugin so the URL will be like GET parameters.
In general, there is no support for accounts whose support period has expired following the support policy.
But we can help you later after all requests from accounts with valid support periods are processed. It may take some time – days or weeks.
If you want to receive it faster, please extend your support period, and this request will be processed in the first queue for supported accounts.
Best Regards,
- Victor
Thank you I’ve used define( ‘FLRT_PERMALINKS_ENABLED’, false );
Is there anyway to just use AJAX and not display the link in the html? (ie test) for the filter
Hi centrable
No, unfortunately, that is not possible.
Best Regards,
- Victor
Hi,
When filter selected, it puts those posts to the top of the list but then still continues to load all other posts.
I’m using Jupiter X theme with Elementor (v3.23.1) – WordPress 6.6 – PHP 8.2.
In the plugin settings:
- Post Query 2 (is the only one that works in the way described above) - Container Class = .elementor-widget-raven-advanced-posts - Ajaz – Yes - URL prefix = category
Test URL = https://manpowergroup.wpenginepowered.com/insights/
Also, is there a way to stop the filter options being collapsed by default?
Many thanks for your support,
J.
Hi jonathan7799
Thank you for choosing Filter Everything PRO.
The infinite, load more, AJAX paginations are using default query, they are simply ignoring the filtered query. For Woo products, there is this plugin who have compatible infinite, load more paginations – https://wordpress.org/plugins/load-more-products-for-woocommerce/
For other CPT there are load more anything, or other plugins that are compatible.
Also, there is a hook wpc_filtered_query_end:
do_action( 'wpc_filtered_query_end', $wp_query );
With the help of this hook, you can make the pagination work with the filtered query, and pass the pagination parameters on it.
Best Regards,
- Victor
i have just purchased the plug-in after a trial period. Activation goes well but when i update the plug-in from v 1.7.6 to v 1.8.5 all my current filters are gone. Everything works fine when i do not update to the latest version. Is there a way to back-up the filters prior to updating and restoring them after?
Hi administratie73
Thank you for choosing Filter Everything PRO.
Weird, can you please send the link to the page where previously the filters were displayed, so we could check it?
Best Regards,
- Victor
We have checked your PM message, yeah this is very weird behavior.
Can you please send the credentials to the wp-admin dashboard following this document so we can check it and try to update it as well? Just make sure you made all of the needed backups.
Best Regards,
- Victor
Hi, on https://family-fundus.de/kategorie/schnitzeljagd/story-detektiv/alt-5-jahre/ there are layout shifts which are not normal.
For comparison: If you first go to https://family-fundus.de/kategorie/schnitzeljagd/ and then click on “8 years” in the filter on the left and then on “Detective” as the topic, the layout shifts downwards after each page load. Can you see why it does this? That wasn’t the case until recently and I can`t see the reason.. Thanks!
Hi jens151
This is not connected to the plugin or its functionality. But as an exception, we can point out the issue – https://i.imgur.com/BIw0ShA.png
It pushed the content to the bottom, so when there is less than let’s say 12 it goes down.
Best Regards,
- Victor
OK, I see. Thanks!
purchase code: 18a23dd5-5518-4648-ac81-ed4010210cdb
Good afternoon, you still haven’t returned our money. The refund request was submitted 2 months ago. Why?
It turns out that you just stole money?
MiraSmurkov
If your refund request has not been processed, you can always initiate a dispute and involve Envato moderator in your refund request. Please, use this option to resolve your issue.
Hi, I’m interested in possible solution to the problem I already wrote.
I used your plugin with Divi woo extended on their products module.
That is their grid of products and your filter works but messes up their pagination done with Ajax on second page if there are more results then one page .
So I saw this post with same problem someone wrote and in there is something about the possible solution maybe.
https://www.elegantthemes.com/marketplace/divi-woocommerce-extended/support/ticket/133786/page/1So is it possible to make something from your side to make it compatible?
Their plugin works currently only with native WooCommerce filters.
I can setup both on test page and send you everything to test. I think I already did few months ago.
Hi duckrogers007
You need to modify the pagination with the help of this hook:
do_action( 'wpc_filtered_query_end', $wp_query );
in order to apply pagination parameters on the filtered query. As it is using default query, that’s why you are seeing other products on the second page.
Best Regards,
- Victor
Hello! The mobile version of the filter on the website is not showing up for on the page https://uscaeu.com/
What could be the issue? Access has been provided (if needed)
Hi orderivs
The issue here is in your styles that make display none – https://i.imgur.com/2D848O7.png So you need to check both elements and set it to the display block, and remove this display none important style from it.
Best Regards,
- Victor
HI, Hope you’re well. I’ve upgraded to FE Pro. The filter works fine on the main shop page. https://les-parfums.co.uk/shop/
On other archive type pages (by category or attribute) i.e https://les-parfums.co.uk/product-category/fragrance/for-him/, The “full” filter shows. I’d like it to only show filters and values relative the the page. So in this example it would only show “men” as gender – not “women” or “unisex”. And then only brands that are in the “men” category, sizes that are only in the “men” category, types that are only in the mens category and so on.
I look forward to your help and support. Thank you.
Best regards Ifti
Lol worked it out I think! Created separate filters for each specific category/attribute page and assigned. That works! I notice that I will be creating a similar filter set for each category – is there a “duplicate” filter option – that would make things much speedier! Thanks again!
Hi Ifti
Thank you for choosing Filter Everything PRO.
No, unfortunately, the filter set duplication is only in plans currently, such functionality is not in the plugin yet.
Best Regards,
- Victor
Filtering not working with numeric Taxonomy – I have created a custom taxonomy (using ACF) to store Year data on my custom post type data. When I access the archive page for the custom taxonomy and then apply any other filter (e.g. tag) and click Apply I get a 404. It looks like the filter seems to strip out the numeric information from the archive URL. The issue can be seen here: https://staging.christinanoblearchive.com/taken_year/1971/ (archive page for the Year Taxonomy for the term 1971). If you select a filter and click apply you are directed to https://staging.christinanoblearchive.com/taken_year/ which 404’s.
Hi mkv5
Add at least one letter to the taxonomy year page slug so instead of /1971/ it’ll look like /1971y/ and then test it. Do not forget to update the filter set after this change as well.
Best Regards,
- Victor
Amending the slug to include a non-numeric character does fix the particular issue. I have changed the slug on the Year 1971 to 1971y See https://staging.christinanoblearchive.com/taken_year/1971y/ and filtering now works. I have also confirmed that having a tag with a purely numeric slug breaks in the same way that my custom taxonomy did. I have changed the slug for the tag Agriculture to 777777 and filtering on the tag archive strips out the tag slug and results in a 404 see https://staging.christinanoblearchive.com/tag/77777/ I can amend the all of the existing Year Taxonomy terms to have a non-numeric slug, but I am concerned that if one of my editors adds a new Year term when entering new data then this will have a purely numeric slug and so won’t filter properly.
The tags can have numerical slugs only, if you will use tags only for filtering. But if you are planning to place filters on those tag pages, then they should contain at least one letter in the slug.
If you are using tags only for filtering and have such a 404 error, then the prefix should be changed to the unique one in the Filters -> Settings -> URL prefixes, for example from tag to the fe_tag
Best Regards,
- Victor