8963 comments found.
Hi,
This is the therapist page, on arrival all therapists are listed, and the fees correctly lists which therapists are available at which segment
https://prnt.sc/XUMVQXMvArldOnce, the fees filter is applied, all the therapists disappear, even though there are results for each. The links below will show this, example image is for when up to £50 is selected
https://prnt.sc/hiBPl1eQNYqZ Once the filter is reset, the therapists all reappear. https://prnt.sc/0tHSWIibY4P9This issue also exists when the fee filter is combined with any other category of filter. For ex if I select to see a therapist between 6 & 10pm, I get this (image 4)
https://prnt.sc/zYTfUWsnSRO4but once I also apply a fee filter, the results disappear.
Thanks, AkinL
Hi Akin
Please provide the link to the exact page with this issue so we can check it.
Best Regards,
Victor
Not ideal putting my clients website in the chat for all when only you need to see it.
All data that you do not want to share publicly you can share via PM here: https://codecanyon.net/user/fe_support
Regarding the issue itself, you are using custom fields for filters, which most likely contain mixed data in the database. Please check this page about typical ACF custom field mistakes: https://filtereverything.pro/resources/acf-and-fe/#important
If it will not help to fix the issue, you can send the credentials to the wp-admin dashboard following this document so we can check it.
Not publicly, everything should be sent via PM.
Best Regards,
Victor
Hi, I am trying to style the filters as they are much too fat and taking up space, with the client not happy and wants something more streamlined.
Could you perhaps point me to good documentaton or a guide on styling filter everything better?
Also, as a 2nd option, would horisontal filters (running at the top of my site) be able to give a better look? I have seen they are possible, but where is the setting for horisontal filters. or do I do it in shortcode?
Thank you very much.
Regards, Tarquin
Hi Tarquin
1) There is no documentation on that, as all custom styles can be applied in the same general manner. You can add them under Filters > Settings > Experimental > Custom CSS.
Also, you can check general information on how to find the required classes of any element on the page here: https://wordpress.org/support/topic/colour-change-to-filter-title/.
There’s nothing unique about styling our plugin, the same approach applies.
2) There are also upgraded styles for checkboxes, dropdowns, etc., which can be enabled under Filters > Settings > Experimental: https://prnt.sc/mqP3n1o0mNiv
The horizontal layout can be enabled from the widget settings or shortcode parameters:
1_ Filters widget: https://filtereverything.pro/resources/filters-widget/
2_ Shortcodes: https://filtereverything.pro/resources/shortcodes/
(This option will be moved to the filter set settings in the 1.9.2 update.)
Best Regards,
Victor
Hi, is it possible to add activated website URLs to the license key overview page? One of our sites deactivated for some reason and the key that was probably used says “This license key already used for two sites.”
Best regards
Hi ideaz_agency
Not really, as it can cause potential security issues and add an extra layer of functionality that isn’t very effective anyway, since it doesn’t grant any permissions to modify that data.
You can simply send us your license key via PM: https://codecanyon.net/user/fe_support so we can deactivate it across all of the sites. Then you can activate it only on the required ones.
Best Regards,
Victor
Hi, ok, will do.
Since this didn’t happened the first time, here is a question about the license behaviour. If you have activated www.example.com and dev.example.com with the same key, would cloning the database from www to dev deactivate the license?
Best regards
Regarding cloning sites and the database: if you have activated the license on a staging site and then clone the site to the production environment, you will encounter an issue. The filter license may appear as activated on the site (since the DB with the data is cloned), but on the license server, it won’t be activated, which can cause functionality to be blocked even if it looks activated.
We recommend deactivating the plugin license before cloning, after cloning the site to the required environment, activate the license on the cloned site.
This was in your DB, and in the license served data will be synced.
The license has been deactivated across all sites. Just in case so you can have normal working license on both.
Best Regards,
Victor
Hi,
For some reason enabling AJAX prevents WooCommerce Add to Cart buttons to render correctly. Thus, making them unclickable. The theme is Gutenberg based.
https://nimb.ws/gEDsiRcP.S. I have disabled all plugins except of Filter Everything and WooCommerce. The theme is based of TwentyTwentyFive
Hi web-maverick
Please check this documentation page about JS functionality (in your case, it is a cart button with JS) that is not compatible with the AJAX by default, and how it can be fixed: https://filtereverything.pro/resources/ajax-instructions-only/#ajax_related_problems
Best Regards,
Victor
I am trying to debug it but so far to no avail. Although this is standard add to cart block that comes with WooCommerce by default.
Maybe someone else has already encountered this issue and general solution was found?
For instance I found this code snippet in FacetWP filtering plugin that indicates how to fix a conflict with WooCommerce:
<?php
/* * Product quantity <input> fields for add to cart forms, * generated with the woocommerce_quantity_input() function, * need re-initializing their minimum value (set in the ‘min’ attribute) after a FacetWP refresh: */
add_action( ‘facetwp_scripts’, function() { ?> <script> document.addEventListener(‘facetwp-loaded’, function() { jQuery(function($) { $(‘input.qty’).each(function() { var min = parseFloat($(this).attr(‘min’)); if (min >= 0 && parseFloat($(this).val()) < min) { $(this).val(min); } }); }); }); </script> <?php }, 100 );
? 
Hi web-maverick
If this is a standard WooCommerce block and functionality, please send us the link to the exact page with the issue so we can check it. And define the roots of this functionality.
Best Regards,
Victor
Hi, it’s local development. But you can easily re-create the issue by:
1) Installing WordPress + WooCommerce + TwentyTwentyFive (Block theme). No other installation is required
2) Enabling WooCommerce AJAX for Add to Cart in “WooCommerce -> Settings -> Products: Enable AJAX add to cart buttons on archives
3) Place your Filters shortcode in Product Archive and enable AJAX in your plugins settings too.
This default setup follows the following structure of a webpage (simplified):
<main class=”wp-block-group” id=”wp-skip-link-target”>
some other stuff inserted by woocommerce or 3rd party plugins/themes
- product collection block from woocommerce
If in FIlter Everything General settings for “HTML id or class of the Posts Container ” you put:
.wp-block-woocommerce-product-collection CSS class – then AJAX filtering for your plugin works, along with dynamic URL updates. However, woocommerce add to cart buttons stop to work.
if you try to use <main> as the container (#wp-skip-link-target), although against your recommendations in docs, then AJAX filtering for your plugin works, along with woocommerce add to cart buttons. But of course what stops to work is dynamic url updates.
A) WooCommerce Product Collection Block as container for filtering:
https://nimb.ws/4GfhVXk https://nimb.ws/3uUf0dg
Webpage <main> tag as container for filtering:
It’s a local development but you can easily recreate the issue by:
1) Fresh install of WordPress + WooCommerce + TwentyTwentyFive Block theme.
2) Enabling AJAX add to cart button functionality in WooCommerce Products Settings
3) Enabling AJAX in Filter Everything settings
4) Placing Filter Everything shortcode in Product Archive template
P.S. By default web pages follow this structure:
<main class=”wp-block-group” id=”wp-- product collection block from woocommerce
A ) If you define WooCommerce Product Collection block as filtering container (”.wp-block-woocommerce-product-collection”) then AJAX filtering works from your plugin, along with dynamic URL updates. However, WooCommerce add to cart block button doesn’t work.
https://nimb.ws/4GfhVXk https://nimb.ws/3uUf0dgB ) If you define webpage <main> element as filtering container (”#wp-skip-link-target”) then AJAX filtering works from your plugin, along with WooCommerce add to cart block button. However, dynamic URL updates stop working as, of courcse, this setup is against what you suggest in your docs.
P.S. Code commenting here is broken. See screenshot attached:
https://nimb.ws/F6N1a9yTrying to post this reply for the 3rd time as commenting system here is…..
It’s a local development. But you can easily recreate the issue by:
1) Fresh install WordPress + WooCommerce + TwentyTwentyFive block theme
2) Enable AJAX add to cart in WooCommerce Product settings
3) Enable AJAX in your plugin settings
4) Place your plugin filters shortcode in Product Archive template
A ) If you define Product Collections Block as filtering container (.wp-block-woocommerce-product-collection) then AJAX filtering from your plugin works and dynamic URL updates. But WooCommerce add to cart block button doesn’t work.
https://nimb.ws/4GfhVXk https://nimb.ws/3uUf0dgB ) If you define page <main> tag as filtering container (#wp-skip-link-target) then hen AJAX filtering from your plugin works and WooCommerce add to cart block button. But dynamic URL updates don’t work as, of course, this is against the setup that you indicate in your docs.
Hi web-maverick
We have managed to recreate this behavior by following your instructions and have passed it on to the development team. Once we receive updates from them, we will let you know immediately.
Best Regards,
Victor
Thank you for your reply.
So it means there is no ETA? 
There are no exact dates, as a list of tasks is in progress with a queue, so the timeline depends on how quickly the items ahead of this one are completed.
Maybe it will be included in the next update.
Best Regards,
Victor
Any updates on this breaking feature with WooCommerce – #1 plugin that is used with Filter Everything plugin?
Hi web-maverick
The development team has checked this issue, and it is not related to WooCommerce itself; it is related to the Gutenberg/FSE theme functionality. They are using Preact with React, etc., on the front for those elements, so the development team is currently checking how this can be addressed, either on the plugin side or in general, as it is quite complicated to find the exact source where those specific events are applied and how to reinitialize them to make it work without any issues.
Best Regards,
Victor
Thank you for your clarification. I understand the depth of issue and hopefully it can be resolved soon. As disabling AJAX leads to more server load 
Hi web-maverick
Yes, this will be resolved, and hopefully added in the 1.9.2 update.
Best Regards,
Victor
Any news about the 1.9.2 update after these 2 months? 
Hi web-maverick
Unfortunately, it is still under development and polishing, as it is now connected to the free version as well, with multiple changes in it. The updates should be released simultaneously in order to avoid any type of conflicts. So this is all taking much more time than was expected.
As a support team, we are receiving information that it should be released soon, but we do not have any exact dates so far.
Best Regards,
Victor
Hi,
For some reason if changing Wordpress language doesn’t affect change in translations of Woocommerce product stock status filter.
It stays in English: In Stock / Out of Stock
https://nimb.ws/p8sVvqrHi web-maverick
It depends on which language you are choosing, there may simply be no localization for that language, or the language may have changed only for the profile and not the site language.
You can use Loco Translate to create the required localization for your site language. Please keep in mind that one language can have different variations, and it will not work everywhere. Each variation will work as a separate one.
Please note that generally, there is no support for accounts whose support period has expired following the support policy.
If you have any further requests, we can help you once we have addressed all requests from accounts with valid support periods. Please note that this process may take some time, possibly days or weeks.
If you want to receive it faster, please extend the support period. We will prioritize processing the request for supported accounts.
Best Regards,
Victor
Thank you for your response. It turned out to be Cache problem that didn’t change the translations for your plugin for some reason. Although WooCommerce elements didn’t require to completely purge the Cache.
P.S. I haven’t used the plugin for quite a while. So I coming back to see what it can be re-purposed for new projects.
Ah, that’s typical with caching plugins. In our experience, some aggressive caching plugins cache entire pages, so even if you remove widgets from the sidebar, they may still appear and try to function. They may also cache already filtered queries and display them on the page, even without a selected filter, because the page remains in that cached state.
Best Regards,
Victor
Hi, I’d like to apply the same set of filters to more than one page, but not to all pages. I tried assigning the same ID to the containers of the different pages containing the queries to be filtered and assigning it to the filter set in the settings. But when I select “Pages -> Any page” in the “Where to filter” section (the first option), the filters appear but aren’t applied, and they don’t seem to see the queries on the pages. How can solve this issue? Thanks in advance
Hi Ylenia_Vernucci
Thank you for choosing Filter Everything PRO.
You can only place a filter set on one page or all pages that share the same main query (default posts/products/CPT archive pages).
However, considering that you are placing them on singular pages, the queries across all of them are unique. Therefore, you need to duplicate the filter set, place it on the exact page, and choose a list (query) to filter on that specific page.
Best Regards,
Victor
OK, thank you
Hi,
Does this work with WooCommerce product categories, or do I need to redo my menu links with the URL categories that the filters use?
Also, at the moment I just use a URL page link with no variables to reset the filters, is there a a better way to reset the filters?
Many thanks, Ryan
Hi Ryan
You can create filters from the category taxonomy or place filters on the category pages. Both options work fine. The main key here is the filter prefix, which keeps the filters unique.
To reset filters, please use the Chips widget or a chips shortcode. Please check this page: https://filtereverything.pro/resources/chips-widget/ and the page with shortcodes: https://filtereverything.pro/resources/shortcodes/
Best Regards,
Victor
Hi Victor, thanks for your reply. Yes, I did think that it could cause problems if I tried to mirror the filter prefixes with the exact ones WooCommerce uses, they obviously need to be unique. I was just wondering what links I could use if I had menu structure with all my categories in?
The chips Elementor widget works fine but I can’t find an option for making the lozenge buttons display horizontally?
Perhaps you don’t even need a category filter on category pages. If you have physical category pages with the links to them on your site, you can use the Woo Product Categories widget to display all the links. This way, users can simply navigate across the categories by clicking on those category pages from the widget and have all of the other filters on the category pages. Perhaps only on the main shop page you can add a separate filter set with the product categories. In order to filter everything on the same page, as you need.
Could you please clarify what exactly you mean by “lozenge buttons”? Could you send the link to the page with those buttons so we can check them?
Best Regards,
Victor
Hi Victor, thanks for getting back to me. By lozenges, I mean the ‘Chips widget’ and the rounded buttons it adds when you add filters (Here: https://postimg.cc/mPLpspPp). I’d like them horizontal rather than vertical. Thanks, Ryan
This is most likely related to the styles on the page, which may be making the container too small or forcing the list items to stack vertically. You can apply custom CSS to adjust this behavior and make them display horizontally.
The custom CSS can be placed in the Filters > Settings > Experimental.
Best Regards,
Victor
No problem, I just set the list display to inline block. That works fine.
Just make sure to set the overflow auto as well (if not set), so the items won’t be cut off, and a scrollable tab will be added instead.
Best Regards,
Victor
I purchased Filter Everything Pro and received my license key as a file in the download package. I entered the key, but the system says it’s not valid. I also tried activating it in incognito mode, but the same error appears. Could you please check my license and help me activate it?
Hi nutvokvanya
Thank you for choosing Filter Everything PRO.
Please note that the CodeCanyon purchase key and license key are two different things.
Please use incognito mode in your browser during this process!
In order to get 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 have to log in with your Envato credentials (with an account where you have purchased the plugin) and obtain your License key.
Best Regards,
Victor
Hello! With the free version of the Filter Everything plugin, filters were displayed correctly on the site and filtered the products as expected. After activating the PRO version, the filters have disappeared – there is just empty space where they should be (although in Elementor editor they are still present). Could you please advise what might be the issue and how to fix it?
Thank you!
Hi nutvokvanya
In the PRO version, you need to specify the page where the filters will be displayed (as you can place them on any page), along with the post list in the “And what to filter” section, to make the filters work correctly. This is because it has the ability to filter custom queries, and there are multiple custom queries on the pages.
Additionally, you can send the credentials to the wp-admin dashboard following this document with the link to the exact page where the filters do not appear, so we can check it, display them on the page, and provide instructions based on that case.
Best Regards,
Victor
Hello Victor,
I have selected “Products” in the “Where to filter” field. However, when I display it using the shortcode on the products archive page, I get the message: “No filter sets are associated with this page. You can connect them in the ‘Where to filter?’ field in the filter set.”
Could you please advise how to fix this?
Thank you.
The “Products” pages refer to the singular product pages. You need to look for either “Common WordPress pages + any archive page…” (on all archive pages) or “Common WordPress pages + Shop” for the shop page, and “Product categories + any product category or exact category page” for product category pages. For singular pages, select “Pages + name of the page.”
Best Regards,
Victor
On my website: https://igreen-pharm.co.il
I’ve an issue with the product filters: when I select any filter (for example “Acne for Hair tag”), the URL changes but the product list does not update at all. In other words, none of the filters actually affect the product display.
Here’s what I’ve already checked:
AJAX is currently disabled, and when I enable it the results still don’t load.
I set the container to .shop-container (default in the theme) and also tried main#main and .products – no change.
I cleared both the site cache and Cloudflare cache – still the same problem.
Could you please advise how to fix this so the filters will properly update the product list?
Thank you very much
Hi dorino11
Thank you for choosing Filter Everything PRO.
Most likely, the issue is with the chosen list in the filter set settings under the “And what to filter” dropdown. This option defines which product list on the page will be filtered.
You need to change it, hit the update button, and test the filtering.
If it won’t help, you can send the credentials to the wp-admin dashboard following this document so we can check it.
Best Regards,
Victor
Hi dorino11
We have checked the site, opened the filter set, cleared all the cache (which you have quite a lot of on the site), and hit the update button in the filter set. It looks like it is filtering correctly now.
Best Regards,
Victor
Hi, this error is frequently appearing in our site error log and I’d like to find a way to fix it:
Fatal error: Uncaught TypeError: explode(): Argument #2 ($string) must be of type string, array given in /wp-content/plugins/filter-everything-pro/src/RequestParser.php:133
Best regards
Hi helenbriggs
Hmm, this is something new we haven’t seen before. Could you please send the credentials to the WP-admin dashboard following this document so we can check it?
Also, please share the link to the page where this error is appearing so we can test it there.
Best Regards,
Victor
Hi Victor
I’ve sent the details you’ve requested and a screenprint of the error message.
Let me know if there is anything else you need.
Best regards Helen
We have added it to the development list so the team can review it and potentially provide a fix. When we get any information related to this, we’ll let you know right away in this comment thread.
Best Regards,
Victor
Hi helenbriggs
We have received information from the development team with a potential fix for this issue.
If you know how to do it, you can go to content/plugins/filter-everything-pro/src/RequestParser.php, approximately line 133 (the exact line may differ), and change only this part:
$queriedValues = explode( FLRT_QUERY_TERMS_SEPARATOR, $values );
To this code:
if ( is_array( $values ) ) {
$queriedValues = $values;
} elseif ( is_string( $values ) ) {
$queriedValues = explode( FLRT_QUERY_TERMS_SEPARATOR, $values );
} else {
$queriedValues = [];
}
If you do not know how to do it, we can try to add it ourselves, but in case of any issues, such as a fatal error, we do not have access to the files (FTP) to fix it. It would be better if you could make the change in a controlled way and, if something goes wrong, restore it to the previous value.
Best Regards,
Victor
Hi Victor, thanks for sending the fix over. Will this be in the next update of the plugin? I’ll make a note to add it each time I update if not.
Thanks Helen
Hi Helen
Yes, absolutely. It will be included in the next plugin update, as this is related to potential errors when some other data type is passed. It will act as a protection mechanism to prevent any errors and similar issues.
Best Regards,
Victor
That’s great, thank you!
Best regards Helen
Hello, one of our filters has randomly stopped working, i have no idea why.
The people field works on some numbers like 5 but only gives 1 result, there are multiple for 10 but it shows nothing.
This is the live page with it not work: https://www.excellence.villas/villas
i duplicated the filters and created a test page and none of the filters work on this page – https://www.excellence.villas/villas-test/ any ideas?
thanks, Sam
Hi Sam
1) If a filter was created from an ACF custom field, please check this page: https://filtereverything.pro/resources/acf-and-fe/ and reverse any changes made on the site during the period when the filter stopped working.
2) You also need to select a filtered list under “And what to filter” in the duplicated filter settings in order to make it filter posts on the page.
If you want us to check all these issues directly on your site, please extend your support period so we can provide further instructions on how to share your credentials safely.
Please note that generally, there is no support for accounts whose support period has expired following the support policy.
If you have any further requests, we can help you once we have addressed all requests from accounts with valid support periods. Please note that this process may take some time, possibly days or weeks.
If you want to receive it faster, please extend the support period. We will prioritize processing the request for supported accounts.
Best Regards,
Victor
Hi,
I have various products categories and so need a hierarchical system. I am aware this is only possible using the checkboxes.
The issue I am facing is that the user has to keep on selecting parent categories, then selecting a child category, then unselecting the parent category.
For example, I have the structure: Printed Products > Accessories > Badges > Large Badges, Small Badges. To have to select/unselect each of these to get to the 2 smallest child categories is very frustrating.
I have also noticed that when you click the parent category, it doesn’t expand and show the child categories which is a further few clicks.
Is there a way around this?
Thanks
Hi countryimages
It’s on the development list to expand this feature and add it to different views, such as radio buttons, etc. This will allow selecting only one category at a time.
Additionally, you can use AND logic for filtering in the category filter, so it will display products that have all the selected terms applied to them.
For example, if you choose red and blue, it will display only the products that have both categories assigned. Other products that have only red or only blue will not be displayed. This can help with parent and child selection to display only the desired products.
As for automatically opening the hierarchy when selecting the parent category, it can be added to the development list and implemented in future updates. You can also experiment with custom coding or open them by default using the wpc_hierarchy_opened hook with your own code to achieve this. (The code below only displays the hook itself:):
/**
* @return mixed|void
* @since 1.7.1
*/
function flrt_hierarchy_opened() {
return apply_filters( 'wpc_hierarchy_opened', [] );
}
Best Regards,
Victor
Hi Victor,
Thanks for your reply. I’m quite disappointed that this feature isn’t already available as it seems like quite a simple request for a hierarchical system.
All I want is for people to be able to click on a parent category and for it to expand to show all the categories/products within it which they can then select. I don’t even want the check boxes in the first place. Is there really no way to simply have it so that is possible?
Thanks,
Michael
Hi Michael
We’d love to help, but unfortunately, as a support team, we can only provide assistance for the functionality included in the plugin. We do not provide custom code for extending the plugin’s current functionality, as it falls outside the scope of the support policy.
What we can do is add the request to the development list and wait until it is implemented.
If there is a need to expand certain features, this can only be done through experimental custom coding on the user’s side to fit a specific case or feature that is not yet included in the plugin’s functionality.
Theoretically, you can write a JS code that checks and applies the required open or closed classes to the relevant items when certain checkboxes are toggled. However, it should also be synchronized with the filtering functionality.
Best Regards,
Victor
Hi,
Thank you for your message and explanation. I completely understand why support outside the standard plugin functions isn’t included, my issue is that this feature isn’t already included in the plugin. I think of it a very basic thing to have. As this is not available, the plugin is unfortunately of no help to me – could you please arrange a refund?
Thank you,
Michael
We are sorry to hear that.
In general, a refund is possible by submitting a form through the account where the plugin was purchased and waiting for a response. Please note that the support team does not handle refunds. Furthermore, we have no control over the refund team and cannot speed up the process or influence it in any way.
Best Regards,
Victor
Hi Victor, thanks for your help. I will get in touch with the refund team.
Hi,
I am testing the free version of the filter everything plugin. It appears that it should filter based on shipping class. But, it doesn’t work with variation shipping class. Does the licensed version ?
Thanks for you time. -Rob
Hi Rob
Thank you for your interest in the Filter Everything plugin.
Yes, the PRO version of the plugin has the ability to sort by product variation data. If the variations contain specific data that is not related to the parent product, it will detect it using the option called “Use for variations.”
Best Regards,
Victor
Hey,
2 questions for you:
1. I have product category filters in my set. I want this to only display Children categories not the same level product categories. How can this be achieved? Could not find in documentation.
2. I have a filter for Brands. Can I not display the Images? Is there an option for that?
Thank you so much for your support!
Hi GiacaNerra
Thank you for choosing Filter Everything PRO.
1) There is no exact functionality to display only the child categories in the filters, as it displays those that are available for your products. However, you can go to Filter Set Settings > navigate to the required filter > click More Options, and from there use the Include/Exclude functionality to remove unnecessary terms from the filter. Also, you can place a separate filter set on each category page (or any required page) and apply the exclude functionality to match the exact filter terms you need.
2) As to removing the default Woo brand images, you can use the following code snippet.
add_filter( 'wpc_brand_filter_entities', 'custom_exclude_product_brand' );
function custom_exclude_product_brand( $entities ) {
// Remove 'product_brand'
return array_diff( $entities, ['product_brand'] );
}
Best Regards,
Victor
Hi, I’m experiencing a fatal error with your plugin on my WordPress website. When I try to access the WordPress admin dashboard or the plugin’s settings page, several warnings appear followed by a fatal error related to array_merge() inside EntityManager.php.
The error message indicates that the second argument passed to array_merge() is false, which seems to happen when one of the internal functions returns false instead of an array. This triggers multiple warnings such as “Trying to access array offset on false” and eventually stops the page from loading.
I also tried applying the fix you previously suggested — adding isset($filter[‘view’]) to the condition on line 937 of EntityManager.php — but the issue persists. It appears that, aside from the rating filter case, there is another situation (around lines 463–470) where getFiltersRelatedWithPostType() returns false, and the code still tries to merge it, leading to the fatal error.
The main problem is that this error completely blocks access to the WordPress admin dashboard. As soon as the Filter Everything Pro plugin is activated, the entire wp-admin area stops working — it becomes impossible to access any section of the backend, including the Plugins page. The only way to recover access is to deactivate the plugin manually via FTP
Warning: Trying to access array offset on false in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 463
Warning: Trying to access array offset on false in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 467
Warning: Trying to access array offset on false in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 468
Warning: Trying to access array offset on false in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 470
Warning: Trying to access array offset on false in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 470
Fatal error: Uncaught TypeError: array_merge(): Argument #2 must be of type array, false given in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php:470 Stack trace: #0 /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php(470): array_merge(Array, false) #1 /home/atenas/public_html/wp-content/plugins/filter-everything-pro/pro/Settings/Tabs/SeoRulesTab.php(119): FilterEverything\Filter\EntityManager->getFiltersRelatedWithPostType(‘product’, ‘post_meta’) #2 /home/atenas/public_html/wp-includes/class-wp-hook.php(324): FilterEverything\Filter\Pro\Settings\Tabs\SeoRulesTab->initSettings(’’) #3 /home/atenas/public_html/wp-includes/class-wp-hook.php(348): WP_Hook->apply_filters(NULL, Array) #4 /home/atenas/public_html/wp-includes/plugin.php(517): WP_Hook->do_action(Array) #5 /home/atenas/public_html/wp-admin/admin.php(176): do_action(‘admin_init’) #6 /home/atenas/public_html/wp-admin/plugins.php(10): require_once(’/home/atenas/pu…’) #7 {main} thrown in /home/atenas/public_html/wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 470
Hi atenasventilacion
Thank you for choosing Filter Everything PRO.
This error is not related to the “937” line error.
It’s a bit more complex and is most likely caused by a situation where one of the entities used for filters was deleted, but the filters created from that entity remained in place.
The fastest way to resolve this is to delete the plugin from the admin dashboard, which will also remove all filters and their related data. After that, you can reinstall the plugin, and the error should no longer appear, as the corrupted filter entity data will be gone.
In 1.9.2 update (not released yet), there is a fix for this issue. It’s quite complex, so it couldn’t be resolved with just a single line of code.
Best Regards,
Victor
What happens if we do that with the saved filters (there are many of them)? Aren’t we at risk of losing them? The error occurred after copying, modifying, and saving an existing filter. Is there any way to make a backup of the saved filters before applying any fix?
Hi atenasventilacion
Yes, you will lose your filters; that’s the unfortunate part of it.
The ability to import/export filters is only included in the upcoming 1.9.2 update.
We can try to apply an emergency fix to make it “partially working.” It will prevent any fatal errors, though some warnings may still appear. These warnings won’t affect the filtering functionality but might be logged in the debug file.
You can send the credentials to the wp-admin dashboard following this document so we can apply this quick fix.
Best Regards,
Victor
I’m going to send you the access credentials because we need to make sure we don’t lose those filters, we spent days setting them up. Thanks.
Yes, since you’ve spent so much time creating them, deleting all and creating new ones is quite inconvenient. When you send the credentials, please let us know here in this comment thread.
Best Regards,
Victor
Message with the access details has been sent, thank you.
We have added the temporary fix to the plugin and activated it, it seems like everything is working. The issue is most likely in those filters: https://prnt.sc/07NuEZXXLeXB
Either some entities were deleted, as we mentioned earlier, or something else has happened.
Best Regards,
Victor
Perfect, that’s solved — but now the pages aren’t working. If I deactivate the plugin, everything works perfectly.
Perfect, that’s solved — but now the pages aren’t working. If I deactivate the plugin, everything works perfectly.
I had to deactivate it again.
Hi atenasventilacion
Which pages aren’t working? Please attach the link to the exact page so we can check it quickly and possibly fix it. Most likely, the filter prefixes aren’t unique and are conflicting with the page slugs or something similar.
Best Regards,
Victor
Hi, I have sent my credidentilals.
For this issue: I can’t seem to make the filter work on this page: https://wordpress.norheims.no/?page_id=2429 I have a filter on this page, and that works. I’ve tried to do the setup the same way. https://wordpress.norheims.no/?page_id=2184
Thank you 
Hi elena426
We have checked the site and simply clicked the “Update” button in the filter set that was placed on the page where it wasn’t working. After that, everything started working correctly. Please check it on your end.
Best Regards,
Victor
Dear Kind Sir, We are using the FREE version and considering PRO.
We want to search Woocommerce Orders using portions of a SKU
e.g., Lets say I want to find all orders with a 6 foot bench using SKU: SB-6FT—It works IF I know the exact SKU !! Hoorah!
Screenshot: https://cedarbrooksauna.com/wp-content/uploads/2025/10/Search-for-SB-6FT-scaled.png
But what IF I want to find ALL orders with SKUs starting with only “SB-”—in other words all WC orders containing a bench… I get nada, zero, zilch. hmm…
Screenshot: https://cedarbrooksauna.com/wp-content/uploads/2025/10/Search-for-SB-all-benches-scaled.png
Is there a better method? Or… Does the PRO version offer this feature? or some work-around? Thx!
Hi cubefree
Thank you for your interest in the Filter Everything plugin.
Do you mean searching orders in the admin panel? If that’s the case, it’s not possible to filter orders directly within the admin dashboard panel. Or maybe we misunderstood? Can you please clarify exactly what you’re looking to achieve? You can filter any CPT on the front end that is displayed via the main query or any custom WP_Query.
Best Regards,
Victor
Hi,
I hope you are well. I am a pro license holder. I am not sure if you remember me, however you helped us as our pro filters were not working the same as the free filter (reason why we purchased) and looked different.
You kindly assisted us and made some changes on our site / plugin (I supplied you our details) and the filters worked and looed great.
The filters were working excellent up until a few days ago (I cannot say when as I was not working on the site a while).
I now get the following message when I filter ‘It appears the page does not contain a container….’ I understand this message and have specified a container name which was previously working (#primary), but not anymore.
I am unsure where we are going wrong, or how to fix and I cannot think we changed anything on the filters, I am also getting concerned this may be a recurring matter. Please advise the best way for us to proceed.
Thank you very much. Regards, Tarquin
Hi Tarquin
Yes, we remember this case. You can send the link to the page with the issue so that we can check it. Most likely, you need to specify another ID or class on some pages, directly in the filter set settings.
Best Regards,
Victor
Hi Victor, Thank you for your reply. I considered the solution may be something as you mention, however did not want to mess around as I was unsure as to what you had done from your end.
The simplest page you can view it on (although it seems to be on all) is https://dev2025.dreambeds.co.za/product-category/stock/beds-mattresses/ but is also a challenge on other pages such as here https://dev2025.dreambeds.co.za/product-category/stock/home-furniture/I am assuming they will likely all have the same solution.
Thank you again for your assistance, and please let me know if you need anything further.
Regards, Tarquin
So you can add the custom class via builder since it is used for category pages: https://prnt.sc/L_BKV4poZ0q1
We just added that primary as ID, so it will be the same across those pages. It should work now, please check it.
Best Regards,
Victor
Thank you very much Victor. Great support as before.I also understand a bit more about the function, thank you very much.
Regards, Tarquin
Yeah, basically, the AJAX functionality requires a container with a class or ID to update the data via AJAX during filtering. Since the page doesn’t have such an ID or class, it’s displaying the error that it cannot find it.
Learning all of this at once, especially when page builders are involved, can be a bit tedious. However, once it becomes clear how everything works, it is quite easy to maintain.
Best Regards,
Victor
Hi Victor, I made some changes to this filter page (and am n ow getting the same error that the container cannot be found.
I had a look at your previous reply mentioning to specify the container. I am however still not getting the reference right on this round.
You did mention the page has no reference and I did make sure that same reference is as per the template you set in place. however am getting the ‘page has no container’ message. I am doing something wrong
I am pretty sure I did something wrong but not sure what. The page in question is https://dev2025.dreambeds.co.za/product-category/stock/beds-mattresses/Please note the filters are now at the top and a bit messy, so please excuse that (end of the day I only want to keep 3 of them to make a neat row at the top
Thank you
Hi Tarquin
The page simply does not have the ID “primary” on any container. You need to edit this page using your page builder and add a class or, in our case, an ID “primary” to the product container row.
We described that part here:So you can add the custom class via builder since it is used for category pages: https://prnt.sc/L_BKV4poZ0q1
However, please note that the information on how to apply classes or IDs in page builders is strictly related to the page builder itself and its functionality, not to our plugin. Therefore, if you need more detailed information on how to apply classes or IDs via your page builder, please contact the support team of that page builder.
Best Regards,
Victor
Hi Victor,
Thank you very much, I will give it a try and will chat to the Divi team if I do not come right
Hi! first things first i do really like this plugin, but i was wondering if you have a release date for the next version of the plugin with the sitemap functionality, i really want this for SEO
Hi jamesm541
It was planned to be released at the end of the month, but it will most likely be postponed, as a few new hidden issues have appeared during testing that need to be investigated further and fixed. One of the issues is related to the XML functionality, and in addition, some new adjustments have been added to the list, which may delay the release date. The update has grown quite a lot from the initial idea.
Best Regards,
Victor
Hi there! I have two licences but when I try to use them a notification tells me it’s already used for 2 sites. It seems I have lost track of where they are running. Is there a way to release both license keys so I can re-activate them where I need them? Thanks!
Hi FlorenceGee
Yes, please send those license keys via PM: https://codecanyon.net/user/fe_support so we can deactivate them across all of the sites.
Best Regards,
Victor