Code

Discussion on Filter Everything | WordPress/WooCommerce Product Filter

Discussion on Filter Everything | WordPress/WooCommerce Product Filter

Cart 15,648 sales
Recently Updated

Stepasyuk supports this item

Supported

This author's response time can be up to 1 business day.

8944 comments found.

dwhuggs

dwhuggs Purchased

Hi,

I’ve just purchased PRO. I’ve set up a filter. None of the filter options appear in my block builder. I an using Twenty Twenty Four Theme. Can you assist please

FE_support Author Team

Hi dwhuggs

The page needs to be published, so we have published it and placed a copy of an existing filter set on it. Please check it.

Best Regards,
Victor

dwhuggs

dwhuggs Purchased

Hi Victor. None of the filter options appear in my block builder The filter I’ve create is not the one displayed on the page

FE_support Author Team

Hi dwhuggs

This is how it is looking on he test 2 page during page editing: https://prnt.sc/ZTyBME14OdPi

This is how it is looking on the front end when you open the test 2 page: https://prnt.sc/msQCbLri5F81

The link to the page is: your_site_url.com/test-2/, where the first part should be replaced with your site URL. Or would you like the filters to be displayed on another page?

Best Regards,
Victor

I have a website that I am trying to filter blog posts. I have the Filter Everything Pro and a filter setup on my category page for the posts. I see the filter with counts (i chose to use the dropdown), but when I select any of the filters, it isn’t filtering any of the posts. It still shows them all.

I can’t figure out what I am doing wrong with it. I am using the Avada theme and I added the shortcode to the top of the page. I see the posts and the filter, but the filter isn’t doing anything. I can provide a login to the site if that would help. Let me know.

FE_support Author Team

Hi jhlarsen

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?

Also, please attach the link to the exact page where you are trying to make your filters work, so we can test it there.

Best Regards,
Victor

Credentials sent. Thank you Victor!

FE_support Author Team

Hi jhlarsen

We have checked the site, and the issue is related to WP Engine caching.

Please contact them to disable or properly configure the object cache so that it does not cache queries on the pages, or at least on the pages where you plan to use filters, in order to allow post filtering to work correctly.

Best Regards,
Victor

Hello, filters urls like /en/news-events/_cat-corporate-news-or-corporate-successes-or-high-temperatures-or-self-lubricating/ are constantly requested by bots drowning our CPU. We need immediate fix for this!

FE_support Author Team

You can use this plugin to add a PHP snippet: https://wordpress.org/plugins/code-snippets/

Best Regards,
Victor

Can I put it into functions php?

FE_support Author Team

Hi marxsvjetlana64

Yes, you can place it in the functions.php file as well.

Best Regards,
Victor

Dear support team,

I have created a filter set using your plugin and it is working perfectly so far.

I do have a question regarding the product categories filter. At the moment, I am using a dropdown menu that displays all categories and subcategories, which makes the list very long and cluttered.

I noticed that it is possible to manually include or exclude specific categories. However, since our store contains hundreds of categories, configuring this manually would be very timeconsuming.

I was wondering if there is an alternative or more efficient way to:

limit the visible categories in the dropdown,

automatically group categories,

or include/exclude categories (for example based on parent categories).

Any advice or best practice for handling large category structures would be greatly appreciated.

Thank you in advance for your help.

Kind regards, Michel

FE_support Author Team

Hi Michel

If you want to hide category terms that have a count of 0, you can hide them all using this option: https://prnt.sc/rOJpOPj22eKC

Or you can use checkboxes, with a hierarchy option (it can be turned on from the “more options” menu when using checkboxes as a view for a category filter).

Also, you can use the hook “wpc_terms_before_display” with your own custom coding to remove the required terms from each page separately: https://filtereverything.pro/resources/hooks/

In the future, we are planning to add a hierarchy option to the dropdowns as well.

Best Regards,
Victor

Hello Victor,

I am not a developer, so please excuse me if my interpretation is not fully accurate, but I wanted to report something I noticed in case it helps.

On a WooCommerce site running Filter Everything Pro, I am seeing a recurring PHP warning in the logs every few seconds:

``` PHP Warning: Undefined array key “view” in /wp-content/plugins/filter-everything-pro/src/Entities/EntityManager.php on line 937 ```

This warning appears continuously while the site is running and may be contributing to increased PHP-FPM load on the server. I am not sure if this is expected behavior or a known issue, but since it is logged very frequently, I thought it would be safer to report it.

If you need any additional information (plugin version, WordPress version, WooCommerce version, or context to reproduce), I will be happy to provide it.

Thank you for your work and for taking a look.

Best regards,

FE_support Author Team

Hi jbstnshopping

Thank you for reaching out to our support team.

This is a known warning, and there is a fix for this warning, which is included in the next update, 1.9.2.

If you know how to add changes to the plugin files, you can go to filter-everything-pro/src/Entities/EntityManager.php on line 937 and instead of this line:

$is_rating = ($filter['view'] === 'rating' && $filter['e_name'] === 'product_visibility' ) ? true : false;

Use this one:

$is_rating = (isset($filter['view']) && $filter['view'] === 'rating' && $filter['e_name'] === 'product_visibility' ) ? true : false;

Or you can send the credentials to the wp-admin dashboard following this document so we can add it.

In terms of functionality, it is not causing any issues as long as it is only a warning. The only impact it may have is that, if any logging functionality is enabled, the warning could be recorded in the log file. As a result, the log file may increase in size. However, in most cases, debug modes are disabled on production sites to avoid potential slowdowns, as the default WordPress debug log functionality can affect performance.

Best Regards,
Victor

Thank you very much for your reply. I just changed that line in the plugin.

I cannot figure out how to add a widget to display all search results. For example, on https://www.lookatlights.com/ when I check a box for a result that has more than 5 results, only 5 appear.

I know the directions say to go to Appearance > Click Widgets, but I do not have a Widget option when I go to Appearance in my WordPress dashboard.

FE_support Author Team

Hi fislerdata

Thank you for choosing Filter Everything PRO.

If you are referring to the posts per page, this should be configured either in the general WordPress settings, or if it is displayed via a template or page builder, within that tool’s settings.

However, please note that none of these settings is related to the plugin itself; they are outside of the plugin’s functionality and are not handled on the plugin side.

Best Regards,
Victor

Thank you – I found the option for the posts per page. Do you have a suggestion for finding the Filter Everything Pro widget? When I press the + icon, then go to the widgets section, there is not a Filter Everything Pro widget, nor does anything show when I search using the search box within the blocks section.

FE_support Author Team

As far as we can see, you are using a block-based theme (Gutenberg).

There are no Gutenberg widgets available yet, but they will be added in future updates.

In the meantime, you can use shortcodes instead: https://filtereverything.pro/resources/shortcodes/

If you need widgets in your theme to make certain functionality work (sorting widget), you can add a widget area to your theme either via custom code or by using a plugin that allows you to add one.

Here is a custom code snippet example, which adds to your theme a widget area if it doesn’t support it by default:

function custom_theme_widgets_init() {
    register_sidebar( array(
        'name'          => __( 'Custom Sidebar', 'textdomain' ),
        'id'            => 'custom-sidebar',
        'description'   => __( 'Add widgets here.', 'textdomain' ),
        'before_widget' => '<section id="%1$s" class="widget %2$s">',
        'after_widget'  => '</section>',
        'before_title'  => '<h2 class="widget-title">',
        'after_title'   => '</h2>',
    ) );
}
add_action( 'widgets_init', 'custom_theme_widgets_init' );

Best Regards,
Victor

Hello Filter Everything team,

I’m setting up filters on WooCommerce archive / collection pages and I’d like guidance on the best supported way to achieve the following layout and behavior using Filter Everything.

What I’m trying to achieve

Row 1: Category filter only – displayed as label-style “pills” – horizontal layout – always visible

Row 2: All other filters (Visual Style, Type, Size, Gallery Sets, etc.) – displayed horizontally – appear only after a Category is selected – update dynamically based on the selected Category

The filters themselves are working correctly in terms of logic and URLs — I’m specifically looking for the intended architectural approach to control layout and progressive disclosure.

My questions

Is there a recommended way in Filter Everything to display one filter on its own row, with the remaining filters on a second row?

Should this be done using:

one filter set, or

multiple filter sets placed separately?

Is there a built-in option or pattern for making a labels list render horizontally for taxonomy filters like product categories?

If progressive disclosure (Category first → other filters second) is desired, what is the best way to configure that using parent filters or filter sets?

I want to implement this in a way that aligns with how Filter Everything is designed to be used, rather than relying on workarounds.

Thank you for your guidance.

Best regards, Charlie

FE_support Author Team

Hi Charlie

Thank you for choosing Filter Everything PRO.

If you want to add styling where one filter spans the full width and another appears below it in a horizontally split column layout, custom CSS is required. You can place it in the Filters > Settings > Experimental > Custom CSS.

If you want to place one filter (for example, at the top of the page) and display all other filters vertically in the sidebar, you will need two filter sets on the same page. The filter widget has a horizontal layout option with the number of columns; in each column, there will be a separate filter, color, size, brand…

If you could send a link to an example of what you are trying to achieve, it would be easier for us to provide more accurate information.

Regarding filters appearing only after selecting certain filters: this is working as a global functionality for any filter term in a filter. If you have a category filter configured as the parent filter and all other filters set as its children, with the “hide until selected in parent” option enabled, the child filters will only be displayed after you select any term from the parent filter.

Best Regards,
Victor

Hi. URL prefixes are not being registered for new attributes after filter set #22. Attributes exist in WooCommerce, can be selected in filter sets, but don’t appear in Filters → Settings → URL Prefixes. Only Brand, Color, and Wireless Connectivity filters work — others don’t respond to clicks. Could you please advise what might be causing this and how to fix it?

FE_support Author Team

We have contacted the team, and they said you can delete it. However, they recommended making a backup just in case you want to revert to the old setup, so that state will be saved.

Regarding deletion, the best approach is to deactivate the plugin and delete it via the admin dashboard. This will remove all files and data associated with it, including the free version if it is installed on the site. After that, you can install a clean version of the plugin. This way, all previous data will be fully removed, and you will start fresh.

As for creating filters, everything should work the same as before. There is no need to follow any specific pattern, but we recommend making backups regularly. This way, even if something goes wrong, you can restore the previous state and have everything working again instead of starting from scratch.

Best Regards,
Victor

Hi Victor,

I followed your instructions and deleted the plugin, then reinstalled a clean version. Unfortunately, the problem persists with the exact same symptoms.

What I did: 1. Created a fresh backup using UpdraftPlus 2. Deactivated and deleted Filter Everything Pro completely 3. Installed a clean version of the plugin 4. Reactivated the license 5. Tested with the NEW attributes that weren’t working before

Current situation: - The 91 URL prefixes that were registered before still work perfectly - ALL new attributes refuse to register in Filters → Settings → URL Prefixes - These new attributes are properly configured in WooCommerce → Products → Attributes - They have correct taxonomy assigned (pa_attribute-slug) - I can select them when creating/editing filter sets - But they simply don’t appear in the URL Prefixes list - Filters using these unregistered attributes don’t respond to clicks on the frontend

This means: The reinstallation did not solve the issue. The problem is not with the plugin files themselves, but with something preventing NEW attributes from registering after the 91st entry.

What I did next: I restored the backup to return to the previous working state, since recreating all 25+ filter sets would be pointless if the core issue preventing new attribute registration isn’t resolved first.

The core problem remains: Something is blocking the registration of any new attributes in URL Prefixes after entry #91. It’s as if there’s a hard limit or corruption at that specific point in the database.

Questions: 1. Could there be a database table limit or corruption after 91 entries? 2. Are there specific database tables for Filter Everything that might need cleaning or repair? 3. Could you check if there’s something in the database preventing new registrations? 4. Is there a way to manually add URL prefixes to the database to bypass this block?

Since you have admin access to my site, would it be possible for your development team to examine the database tables directly to identify what’s blocking new registrations?

I’m willing to try any diagnostic steps you suggest, but I need to resolve this registration issue before recreating filter sets.

Thank you for your continued support.

Best regards

FE_support Author Team

We can try to add it via the database manually. However, since we do not have FTP access, and if this causes a fatal error, please be cautious so you can revert the changes.

Also, please install the phpMyAdmin plugin so we can check the database.

Best Regards,
Victor

Hi Victor,

I have sent credentials data from https://codecanyon.net/user/fe_support

I have backup.

I have installed Query Monitor plugin also.

Please resolve our issue as soon as possible.

Thanks

FE_support Author Team

Hi shinyrock1

We have checked the site, set up the filter, and cleared the cache as well, just to make sure everything is working properly on the shop page.

You have multiple product queries on that page, so we chose the one required for displaying our products there. Please check the functionality, and also let us know if the server is performing well without high CPU spikes.

Best Regards,
Victor

Hi,

CPU spikes works fine now.

Please can you check ? when we click on check box it takes some time.

Thanks

FE_support Author Team

The speed is entirely dependent on your server’s capabilities. The site itself is quite slow. We turned off the plugin and tested the speed on the About Us page (which is the lightest page on the site): https://prnt.sc/9GGlhXpefq9t

Even on that page, it is taking almost 6 seconds to fully load.

The same thing happens during filtering; the server response is slow, which is why the process takes longer.

Best Regards,
Victor

HKar

HKar Purchased

Hi,

The plugin is very slow, i have disabled now. The provider says:

Thanks for reaching out to us. Unfortunately, such types of plugins are often very slow and only designed to work at a very small scale. This is a limitation of the plugin, but not an issue at on. I’d recommend reaching out to the plugin support to see what can be done to speed up its operation.

—Issue

Wordpress/filter-everything-pro Module/Plugin 92.412 % (112034.342 ms)

SELECT wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id AND wp_postmeta.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt1 ON ( wp_posts.ID = mt1.post_id ) LEFT JOIN wp_postmeta AS mt2 ON ( wp_posts.ID = mt2.post_id AND mt2.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt3 ON ( wp_posts.ID = mt3.post_id ) LEFT JOIN wp_posts AS p2 ON (wp_posts.post_parent = p… Database query 92.359 % (111969.3 ms)

SELECT SQL_CALC_FOUND_ROWS wp_posts.ID FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) LEFT JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id AND wp_postmeta.meta_key = ‘_xxx_xxxxxxxxxx’ ) LEFT JOIN wp_postmeta AS mt1 ON ( wp_posts.ID = mt1.post_id ) INNER JOIN wp_postmeta istockstatus ON (wp_posts.ID = istockstatus.post_id) WHERE 1=1 AND istockstatus.meta_key = ‘_xxxxx_xxxxxx’ AND istockstatus.meta_value <> ’’ AND ( wp_posts.ID NOT… Database query 5.825 % (7062.193 ms)

Wordpress filter-everything-pro 112034342 92.412 % (112034.342 ms)

Thank you for your help.

FE_support Author Team

Hi HKar

Thank you for choosing Filter Everything PRO.

Can you please provide information on the hardware configuration you currently have on your server?

Also, please send the credentials to the wp-admin dashboard following this document so we can check it. Perhaps there might be some issues related to compatibility with other plugins that are causing this slowdown.

Best Regards,
Victor

Hello I bought this plugin and it keeps saying the license is wrong. Yet its the only code I have?

Ok it appears its not the purchase code. My fault.

FE_support Author Team

Hi chris80808

Just in case other users stumble across this comment and are looking for a solution, we’re going to leave the instructions here as well:

Please use incognito mode in your browser!

In order 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 have to log in with your Envato credentials (with an account where you have purchased the plugin) and obtain your License key.

This is the license key that is used for activation of the plugin.

Best Regards,
Victor

Hello, we’re seeing in our Google Analytics thousands of URLS that look similar to this /resources/content-series-christmas-perspectives-or-cornerstones-or-jonah-and-the-word-of-the-lord-or-jubilee-2018-spring-worldview-or-reclaiming-a-biblical-vision-of-social-justice-or-reclaiming-a-biblical-vision-of-the-family/

Where it appears that the “or” statements are being added to a URL instead of it dynamically changing the URL with parameters.

I can’t find any setting to address this.

FE_support Author Team

Hi jcecile3

If you are referring to how to turn off filter permalinks so they work like GET parameters, you can add this PHP code snippet and update your filter set to have only GET parameters for the filters in the URL:

define( 'FLRT_PERMALINKS_ENABLED', false );

Best Regards,
Victor

Hi there,

We have a customer using Filter Everything PRO (purchased from his own account), and we need to export and import its settings from a staging site to the live site. I’ve read through the comments and noticed that a few months ago you mentioned this would be available in version 1.9.2, but the latest version is still 1.9.1.

Do you have a patch or an unreleased build we could test? This functionality is very important for us.

FE_support Author Team

Hi Laborator

We’d love to help, but unfortunately, the development version of the plugin is not available for distribution. Please wait until the official 1.9.2 update is released.

We understand the importance of this, but there is no separate patch, as much of the plugin functionality has been modified to introduce new features that are interconnected in one way or another.

Best Regards,
Victor

bkris

bkris Purchased

URGENT: Issue with “OR” logic behavior – Multiple selections overriding results

Dear Filter Everything Support Team,

I am contacting you regarding a critical issue I am experiencing with Filter Everything Pro on my live website.

The Problem: When checking multiple options within a specific filter set, the plugin fails to aggregate the results. Instead of showing products from all selected categories, it only displays the products associated with the last option clicked.

Troubleshooting already done: I have confirmed the following settings:

The filter logic is explicitly set to “OR” (not “AND”).

All slugs are correctly configured.

I have cleared the cache to ensure it is not a caching issue.

Despite the “OR” setting, the frontend behaves as if it is overwriting the previous selection rather than adding to it. This is severely affecting our site’s usability.

Attachments: I have attached screenshots showing:

The backend settings (confirming the “OR” logic).

The frontend behavior when multiple filters are selected.

Could you please investigate this as a matter of urgency? Our store functionality is compromised, and we need a fix as soon as possible.

My Site Details:

Website URL: centrumpapir.hu

Plugin Version: 1.9.1

Thank you for your quick assistance.

Best regards, Kristof

bkris

bkris Purchased

Thank you. What did you choose in elementor loop grid on the Query settings menu? on 2/1 image

bkris

bkris Purchased

I found the correct setup: The And what to filter? you have to set to Search post list Products. So now i think its working

FE_support Author Team

Hi bkris

Regarding what we have chosen in the “And what to filter” section, even though it has already been configured, we would like to add a documentation section from the Quick Start guide, maybe it would be helpful for others as well: https://filtereverything.pro/resources/quick-start/#set_the_wp_query

This section explains the “And what to filter” area.

Best Regards,
Victor

Hi, i am using custom snippet for edit the H1 tag of every category. Is possible when is added custom H1 to use it into the H1 formulas and meta title?

FE_support Author Team

Hi WebVisuality

Please check this page, it can be helpful: https://filtereverything.pro/resources/all-about-seo/

Best Regards,
Victor

wpzzz

wpzzz Purchased

Hello Today I saw the status Locked for the plugin, and when I try to enter the license key, I see an error This license key already used for two sites.

But I only use the plugin on the main site and stage, what’s the problem?

FE_support Author Team

Hi wpzzz

Thank you for reaching out to our support team.

The problem was that the license was activated on two sites. We have deactivated the license across all of the sites. Please activate it on the required ones.

Best Regards,
Victor

uzair35 Purchased

Hello, a few days back. I comment here about multiple URL generation on my website ( visaboards.com ) with your recommendation. I stopped them through .htaccess. After implementing, none of filteration is working on my website.

If I remove code from htaccess the URL process starts again. As a result, it uses my hosting 400% of CPU, and if I keep the code, CPU drops to 0%, and the filtering stops. Now, how to handle this sitataution. My website is in the ranking stage, and this bug is causing a problem for me.

Is there any support email where I can access so you can have a look (If needed).

Here is httaccess code

RewriteEngine On

#
  1. BLOCK INFINITE FILTER URLS (PERMANENT – SEO) ############################################### <IfModule mod_rewrite.c>
  1. Restrict to known filter directories (extra safety) RewriteCond %{REQUEST_URI} ^/(jobs|countries|scholarships|events)/ [NC]
  1. Filter Everything Pro patterns RewriteCond %{REQUEST_URI} (location-|instutioncountry-|discipline-|academic_programs-|functional_area-|job_sector-|job_type-|international_applicant-|experience_required-|qualifications-|region-|languages-|second_language-|passport_color-|scholarship-countries-|scholarship_type-|event-countries-) [NC]
  1. 410 Gone = fastest Google drop RewriteRule .* – [G,L]
</IfModule> ###############################################
  1. END FILTER URL BLOCK ###############################################
  1. (OPTIONAL – can remove)
  2. Block if Referer matches current URL (rarely useful) RewriteCond {HTTP_REFERER} ^https?:// {HTTP_HOST}%{REQUEST_URI}$ [NC] RewriteRule ^ – [F,L]
  1. (OPTIONAL – can remove)
  2. Block Chrome 112.0.0.0 bot user-agent RewriteCond %{HTTP_USER_AGENT} “Chrome/112\.0\.0\.0” [NC] RewriteRule ^ – [F,L]
  1. BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* – [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
  2. END WordPress

uzair35 Purchased

Hello again, yes. Thank you so much. Your solution fixed the problem.

Filteration is working perfectly.

Have a perfect day. Cheers Bro

uzair35 Purchased

For your information, my resources for hosting are normal, too.

From Robort.txt

i set

Disallow: /*?

Which fixed my indexing & SEO issues

FE_support Author Team

Thank you for the update, that’s amazing news!

Best Regards,
Victor

Hi,

I hope you are well.

The filters titled ‘max weight per person’ does not seem to be changing sort order when I configure the terms order in the productsa configuration or the filter as it should.

An example can be seen below.

https://dev2025.dreambeds.co.za/product-category/stock/beds-mattresses/

As out plugin has some custom work, I am not sure if this will affect it , and turning off filters turns off the filters.

Could you please advise, or check, as I am uncertain where the challenge would be and thought I would first check here witho you, as its one of the few spots I cannot manually confrim from my end.

Thank you very much for your assistance.

Regards, Tarquin

FE_support Author Team

Hi Tarquin

We have configured it to be displayed correctly. Please check if it is working properly.

We went to the filter set, navigated to the required filter, and selected menu order 123. It is displayed exactly as you ordered it in the attribute values. This option is available only for WooCommerce attribute values.

Best Regards,
Victor

Hi, thank you very much, I do see the max weight filter showing in the set order now thank you

FE_support Author Team

We are glad to hear that the issue was resolved.

Best Regards,
Victor

Hi,

I’m using the Divi theme and unfortunately the plugin does not work for my use case. I purchased it to style and control the blog overview page with Divi, but it turns out this isn’t possible and I’m not able to achieve the intended result for my website.

Because of this, the plugin doesn’t meet my needs and I won’t be able to use it as planned. Would it be possible to receive a refund?

Thank you for your time and support.

Kind regards,

Jasper (thepartypackage.nl)

FE_support Author Team

Hi Jasper 

Thank you for choosing Filter Everything PRO.

We are sorry to hear that the plugin did not meet your expectations.

Could you please provide more detailed information? Are you referring to full implementation with the Divi Builder so it can be styled directly like the built-in Divi widgets? Or, how exactly were you planning to style it? This information would greatly help us improve the plugin.

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,

I created filter sets for every product category separately.

On desktop, everything is fine. On mobile, the off-canvas filter sidebar is working only on one category: https://sape.hr/product-category/psi/. All other categories show an empty off-canvas filter sidebar.

I am using the WoodMart theme, and the sidebar is configured to be open on desktop and off-canvas for mobile.

I’m getting crazy here. :-(

Thanks.

FE_support Author Team

Hi marijansokacic

Thank you for choosing Filter Everything PRO.

Please send the credentials to the wp-admin dashboard following this document so we can check it.

Also, please provide the link to the exact category page where the filters aren’t working on mobile, so we can test it directly.

Best Regards,
Victor

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey