8972 comments found.
Hi,
I have almost configured the plugins and look great. The only issue is in the mobile lay out the bottoms are outside. here I send you the iPhone screenshot ante google developer console for phone. https://ibb.co/Lg8BdBq https://ibb.co/PY8JrzX Could you help me? Thanks advance,BR,
Antonio.
Hi Antonio,
It appears that you have customized the styling or modified the filter templates. To ensure proper functionality (looks), it is necessary to complete the styling you have started and ensure that everything works seamlessly together. This is the only solution to the issue.
Best Regards,
- Victor
I put the shortcode filter on my Wordpress site, however, it doesn’t count the tags assigned to each post. Can you help me?
Hi leandrodfreitas,
Thank you for choosing Filter Everything PRO.
Can you describe in more detail what do you mean, it is a bit confusing what tags are not counted. Also, send the link to the page with the issue so we can check it.
Best Regards,
- Victor
Try to choose another option in the “And what to filter” dropdown inside the filter set settings. Perhaps you are using the wrong query.
Best Regards,
- Victor
In this field I have only this option.
“No WP Queries matched to the post type “Post” found on the page”.
Can you help me?
In that case, there can be two issues that can be cache, you have a plugin that caches everything and because of that there is no possibility to choose the WP_Query in the filer set settings in that case you need to turn off object caching, and actually experiment but before testing always update filter set, or your items displayed without the WP_Query, using API or any other ways.
Best Regards,
- Victor
Hello,
1 – I get the following message: this prefix is not authorized because it corresponds to a taxonomy or term name already used on your site. Please use a different prefix. => The field is grayed out, which means I can’t change it, and therefore I can’t save any changes to the filter even though the attribute is unique.
- https://ibb.co/0hwtgcm - https://ibb.co/nPnQDB8
I don’t understand how I can solve the problem, could you please help me?
2 – This feature has been awaited for several months now: XML sitemap for indexed filtering result pages IN PROGRESS https://ibb.co/w6qW0SxThanks Bruno
Hi Bruno,
1. You need to go to the Filters -> Settings -> URL Prefixes – https://prnt.sc/RlTUR1ys8jtD find the needed prefix change it then save it.
2. Yes, the XML sitemap for indexed will be released at the closest time. Unfortunately, unforeseen circumstances over which we don’t have control delayed the implementation.
Best Regards,
- Victor
Hi
Hope you are doing well!
When Filters pro is activated I face the following conflicts in my website.
When clicking the ‘Search’ button on the following pages, the page that comes up is ‘Page Not Found’ or list stays blank. Please kindly have a look at the following pages:
https://beisee.co.uk/search-on-map/ https://beisee.co.uk/search/ https://beisee.co.uk/property/Thank you ever so much!
Hi moshef3,
It’s possible that there could be an issue with the setup of the ERE plugin or a conflict with another plugin. Our plugin works by adding filter prefixes to the URL as parts of it, but if there is another plugin that also manipulates URL particles, there could be a conflict as to which one takes precedence in controlling the URL.
You can try the workability of our plugin separately to make sure that they are not conflicting with each other.
And for some reason right after the click on the search button, we get a 404:
1. https://prnt.sc/gDBx0A1WJYFp
2. https://prnt.sc/DNymsgr8fi5w
Best Regards,
- Victor
Yes, I deactivated rour plugin & everything is working fine. Beides for filters . I was just wondering, how come that your plugun conflicts with pages that have no filter set up.
We haven’t encountered similar issues with other plugins. However, it’s common for plugins to conflict due to multiple reasons such as code interactions, compatibility issues, and different development approaches used by plugin authors. These conflicts can sometimes affect unrelated areas of the website in unexpected ways. There is no connection between the pages, but there is a high-level conflict. You can view the conflict’s outcome on the pages. It’s hard to test the plugin with all of the plugins that exist for WordPress and their updates.
Best Regards,
- Victor
Hi, looked at a lot of filter plugins and yours seems to be the best for what I need, Great work. I have an issue: I need the plugin to show at the top of the page on mobiles, the free version didn’t work so I got PRO so I could use the Enable Pop-up Filters widget, which works but puts the widget on every page, not just pages with the side bar. I saw previous support thread where you suggested “Experimental>Hide opening widget buttons” then using [fe_open_button] (which i added in a text box into the sidebar widget section). I arrive at the same issue, the button appears at the bottom of the page again. Can you help me to fix, I purchased you plugin so I could have a button at top of page for mobile but only woocommerce pages.
Thanks
Hi x7mo,
Thank you for choosing Filter Everything PRO.
Please, send us credentials to your /wp-admin following this document so we can check it.
Best Regards,
- Victor
All done and sent over via PM
We have checked the site, and here’s how you can solve it. Your widget area at the bottom of the page is in mobile mode, so of course the button will appear at the bottom. And since this is an archive page and not some custom page built with Elementor, or any other page builder you cannot insert the shortcode on the page where you want. There are two ways how you can do it. First one is to change the position of the sidebar in the mobile mode, so it won’t be at the bottom of the page or the second one, you can add this code in the archive-product.php template:
<?php echo do_shortcode('[fe_open_button]'); ?>
To make it the right way, copy the original template file archive-product.php file in the WooCommerce plugin directory (wp-content/plugins/woocommerce/templates/). Copy this file and paste it into your child theme’s woocommerce/templates directory. And add the code right after the header where the arrow is pointer – https://prnt.sc/QrOFDlSaaPLi
Do not make changes in the direct plugin file.
Best Regards,
- Victor
Thanks this worked perfectly
This Solution worked great thanks. I just have a little issue with the positioning of the button on the mobile website. is there any additional css I can use to make the button centre of the page?
also the button disappears on side (landscape) view of the mobile site. is there a way to control the break point of the button collapse?
Hi x7mo,
If you want to force the filters to switch to the mobile mode for some specific devices, we can recommend changing the mobile breakpoint value for the plugin, which can be achieved with this code:
add_filter( 'wpc_mobile_width', 'my_custom_wpc_mobile_width' );
function my_custom_wpc_mobile_width( $width )
{
$width = 1180; // new desired breakpoint in px.
return $width;
}
You can use custom CSS for button from Appearance->Customize->Additional CSS.
Best Regards,
- Victor
this doesn’t work it still collaspes at its own choice, even when I change the width up to 2580
Hi x7mo,
Let us know if you make it work, or if you still didn’t make it work as intended.
Best Regards,
- Victor
I still haven’t been able to make it work as intended
Hi x7mo,
Could you provide the credentials one more time to the wp-admin following this document so we can check why it is not working?
Best Regards,
- Victor
Hi x7mo,
We checked the site and added the code to the functions.php file and the breakpoint is working good as it should – https://prnt.sc/9Rcy6ge5zb9Z you can change it to the needed number. If it wont work, please provide screenshots or a video of how it is not working.
Best Regards,
- Victor
Thanks, yes it works, I was adding to Appearance->Customize->Additional CSS but as you said you put in functions.php thank you
Hi x7mo,
We are glad to hear that everything is working.
Best Regards,
- Victor
Hi
I have create 2 filters I would like one in each page. I have selected the page in the filter but can see it in the page. https://ibb.co/gDDMpxd https://ibb.co/6vsb93X Could you help me?Thanks advance,
BR,
Antonio
Hi Antonio,
You need to create two similar Filter Sets with the same filters and place each of them on the needed page.
If you make that page as your homepage in the WP admin dashboard setting then you need to choose common wordpress pages + homepage in the “Where to filter”
Best Regards,
- Victor
Hello
I would like to move SEO Description from bottom to the top (https://prnt.sc/dR6SDrYbdy8_). How to do that?
And another question. Could you update your plugin that we could have two SEO Description. One at the top, the other at the bottom. https://prnt.sc/DEWBJgQ_xNx1Hi gorecwp,
Go to your page template that is used for a particular page where you place the filter widget and edit it to place the SEO description where you want to.
At the top of the image that you send, you can see the term description. If you want to show the same SEO description text from top and bottom you can use two hooks for SEO description on your page template.
Having two SEO description texts on a page can be problematic from an SEO standpoint. It can cause confusion for search engines and may not provide a clear and consistent message to users. And considered a bad practice.
Best Regards,
- Victor
I need text on top and different text at bottom, not the same. Could you implement that in your plugin?
Apologies, update to the previous answer, by default SEO rule’s description, is attached to the woocommerce_after_shop_loop hook on WooCommerce pages and to the get_the_archive_description hook on the WordPress archive pages. You can change that by rewriting the hook it is using, you can read more about it here – https://filtereverything.pro/resources/seo-rules-troubleshooting/
There is only one SEO text description, because a page with two different SEO text descriptions, can lead to confusion for search engines and may have negative effects on your website’s search engine optimization. Confuse the crawlers and make it difficult for them to determine the page’s actual content and purpose. Search engines generally prefer unique content, and having similar or multiple descriptions can negatively impact SEO.
But, if you want to create two different SEO Descriptions on your page, currently, you can only extend the plugin functionality with a custom code to add a second SEO text description. Unfortunately, we do not provide or debug the custom codes as it is out of the scope following the support policy here on CodeCanyon. If this functionality will be highly requested we are going to add it to the plugin, but at the time we are working on another highly requested feature. Adding new feature need a significant amount of time and testing efforts to make everything is working without bugs. So in the future, we can add it as well.
Best Regards,
- Victor
Hi, although a variation size of my product is not in stock it will be displayed in the filter. I thought when checking “use for variations” on the filter setting the stock status will be taken in account and variations that are out of stock wont be displayed. Is there another apporach or how do I make sure to not have variations displayed in the filter which are out of stock. Best Juilan
Hi julianw30,
Yes, you can place a filter with the stock status so the client can decide if he wants to show items that are out of stock or not.
But if you want to show only in stock items there is a code that hides all of the out of stock items – https://gist.github.com/wpserve/6bb6d1c7141f23b058a1ca726ca57372
Best Regards,
- Victor
Hi its possible add fuction to filter like load more products? For example load 10, 20,50 products? Like on this url: https://montessorihracky.cz/cs/249-montessori-pomucky-kategorie?fbclid=IwAR0fzaRQmbc4-XV8BYa5kd6lhBed2Sb0VUw3AydEsg8y7crbEZYOSSZIrGU&order=stock_available.quantity.desc&resultsPerPage=10
Hi montemama,
What do you mean by “like load more products”? For filters in more options, you can turn on “More/Less” so it will work like here in this demo – https://demo.filtereverything.pro/product-category/electronics/laptops/
If that’s not what you are looking for then describe in more detail what you want to achieve.
Best Regards,
- Victor
Does this work with Metabox? I’m interested in buying but was unable to determine if it’s compatible or not based on comments from a year ago.
Hi VerticalHosts,
Thank you for your interest in the Filter Everything plugin.
Yes, the plugin is working with Metabox.
Best Regards,
- Victor
Hello! Thanks for your hard work and great plugin, I really like it, but I can’t figure out how to configure it properly. The site has a Guido theme installed that creates custom record types – listings. The list of listings is displayed on the homepage and filters are added. The list of listings for each listing displays the type and category it belongs to. The filters work, everything is fine, but if I click on a listing category or type, a new category or type page opens with no filters. Yes, it’s a different url, not the one in the “Where to filter?” field. , but what does it mean to create the same filter package for all categories and listing types?
And the second question. I created a package of all filters (4 in total) and placed it in the sidebar. Then I created a second package with only 2 filters and wanted to place it as a shortcode in the header created in the elementor constructor. When I add a shortcode to the header, all the filters from the first package (4 pcs) appear there instead of the second package, where there are 2 filters, and the filters disappear on the sidebar. Tried changing priority, tried adding HTML id , nothing helps. What am I doing wrong?
Hi diona5,
Thank you for choosing Filter Everything PRO.
1. You can choose “Any categories” so the filter set will appear on all categories, or you can create multiple filter sets and place them on the needed categories.
2. Here’s the thing, they work separately, if you would place two filters in the sidebar widget priority would work, same with two shortcodes, but mixing it is not working. But you can do a simple trick add two shortcodes and hide the first filter set shortcode container so you will see the needed second one in your header.
Best Regards,
- Victor
Sorry, but I don’t understand how to hide the shortcode. In addition, as I wrote in a previous comment, when I add a shortcode to the header, the filter disappears from the sidebar. To be honest, I expected that for each set of filters a unique shortcode would be generated, or it would be possible to select the required set of filters by its name or ID
How to display the search field with the final results in the header of the site?
This is the search box in the Guido theme https://prnt.sc/W8v1oP1974-a
Theme https://themeforest.net/item/guido-directory-listing-wordpress-theme/36719791
plugin filtering does not work there, so I want to replace the search field in the Guido theme with the plugin search field https://prnt.sc/CxvupSvf3fCA
Hi diona5,
Well, you can hide it with simple CSS. Something like display none would be more than enough.
About the search box, what do you mean it is not working there? Did you try to set the filter set on the search page? Well, you can create a redirection filter with a search field then, and redirect to the needed page with products.
Would be easier to understand if you could describe the end result how and what you want to make, how the search box should work, and other details, so we can help you faster.
Best Regards.
- Victor
Hi
I have install the filter in spanish and looks great. Now I going to install in English, I go to polylang Languages -> Settings -> Custom post types and Taxonomies and click in every taxonomy but no works I go to create are filter and only have the taxonomic in spanish. https://ibb.co/129BVJ8 Could you help me? Thanks advance,BR,
Antonio.
Hi,
I think the issue is solve. I have create other filter with the taxonomies in spanish but in the english pages are translate.
The problem I have commented in other post is I can not include the filter in each shop idiom.
Could you help me?
Thanks advance.
BR,
Antonio.
Hi 95mc,
What do you mean by “include the filter in each shop idiom” if you have a page with translations, create a filter set and place a filter set with the corresponding langue on the page and everything should work. Just if your main language page is set as the homepage in the WP Admin dashboard, then you need to choose “Where to filter” common WordPress pages + homepages, and all other filter sets with different languages to the needed pages, using page + my-page.
Best Regards,
- Victor
Greetings. First of all awesome plugin, and as a developer it is trully impressive what you did here. But I have a few questions: Is there any way to adjust the translation for chips? I would like to adjust in the following example https://toybelle.com/wp-content/uploads/2023/07/Screenshot-2023-07-06-at-20.14.15.png “Max pret 532” => “Pret maxim 532 lei”. Tried looking up with poedit but couldn’t find any translation string that matches.
And another question regarding category filters. From a SEO point of view, if I have the standard category urls and the ones from these filters, it won’t cause duplicate content issues?
Hi toybelle_com,
Thank you for choosing Filter Everything PRO.
You can modify the chips term name with the hook ’wpc_chips_term_name’
$chips_term_name = apply_filters( 'wpc_chips_term_name', $term->name, $term, $filter );
This expects that you are familiar with WordPress hooks – https://developer.wordpress.org/plugins/hooks/ or we can recommend finding a developer on platforms like Upwork to help you with the code.
Please note, that we do not provide or debug custom codes as it is out of the support policy here on CodeCanyon.
Any pages of filtering results are closed from indexing by default and there is nothing to worry about.
Best Regards,
- Victor
Thanks for the prompt help Victor, implemented the change and it works flawelssly.
Hi toybelle_com,
I’m glad that your problem was solved 
If it is possible I would be thankful for a positive review about the plugin here on CodeCanyon – https://codecanyon.net/item/filter-everything-wordpress-woocommerce-filter/reviews/31634508
Thank you in advance!
Best Regards,
- Victor
Hi dont see filter on mobile in this url: https://www.webgrafix.h10s.eu/novinky/ on desktop its ok. Can you help me find problem? Thx.
Hi montemama,
If you are using any of those options – https://prnt.sc/4kDKyGxJE0PF and your filter widget is placed with a shortcode add a: [fe_open_button] so the filter button will appear.
Or you place the filter winged in a container or the widget itself are simply invisible in the mobile mode.
Best Regards,
- Victor
Where i need this i am confused.
I using now this shortcode: fe_widget show_selected=”yes” show_count=”yes” horizontal=”yes” columns=”3”
Hi montemama,
If you are using a shortcode then add one more shortcode with the mobile button which is [fe_open_button]
Best Regards,
- Victor
Hello there. I am using the PRO Version of the Filter Everything Plugin and it seems to do everything I want except I am having trouble with just a few things.
Issue 1. I am using Divi (Theme and Builder), to build a listing website. I have created a page (I am using the PRO singular page filter feature) for this example I am using the home page. I have added the plugin as a Shortcode [fe_widget]. And the “Where to filter” is set to Pages>Home, and then the only available query is selected (Property query). But when I am on the page and I try and filter I get this error.
“It appears that this page does not contain a container with the specified «HTML id or class of the Posts Container». Try to specify the correct one in the Filter Set settings or the common plugin Settings.”
I think this might be due to me using a plugin called Divi Flash (It’s just an extender plugin of Divi) It provides me with the Divi Module (CPT Grid) which is displaying the Custom Post Types on the page.
If you can please assist in resolving the error or lead me in the right direction to fix it. I am unsure how else to display the post types if I don’t use divi flash.
Issue 2. I am unsure how to correctly format the shortcode to display the plugin in a horizontal setting. Any assistance would be appreciated.
Kind Regards, Joey, RJ Media
Hi Joey,
Thank you for choosing Filter Everything PRO.
To the first issue, it’s happening if you are using AJAX, go to your filter set settings, and in the “HTML id or class of the Posts Container” specify the container of your items on that page – https://prnt.sc/BtuTnhWQ5pHs
And the second issue you can do it like that: [fe_widget horizontal=”yes” columns=”3”] More about shortcode you can read here – https://filtereverything.pro/resources/shortcodes/
Best Regards,
- Victor
Hi Victor,
Sorry for not knowing how, but how do I find the container of the items on the page? I am using inspect element and none of the classes are working.
Regards, Joey
Just use browser dev tools to check, for example here – https://prnt.sc/IHfScg3RbXBv
Best Regards,
- Victor
How do I add the filter to a post type template without widget or shortcode, just with php?
Hi wcpwouts,
Thank you for choosing Filter Everything PRO.
You can use shortcode in your template with the PHP code:
<?php echo do_shortcode('[fe_widget]'); ?>
There are no other ways how you can do it.
Best Regards,
- Victor
Yes, that works fine, thank you.
Hi wcpwouts,
I’m glad that your problem was solved 
If it is possible I would be thankful for a positive review about the plugin here on CodeCanyon – https://codecanyon.net/item/filter-everything-wordpress-woocommerce-filter/reviews/31634508
Thank you in advance!
Best Regards,
- Victor
Hello, I had just setup the pro version looking for the option to use it with Elementor. However, when I’m in Elementor the widget can’t be found.
Hi nbgavitus,
Thank you for choosing Filter Everything PRO.
The issue with finding the widget in Elementor is that its search bar is only working with Elementor widgets, so when you type “filter everything” it won’t show any results. You can find our widget by scrolling down to the WORDPRESS – https://prnt.sc/FPgVJhXM2S2N section where you can see our widget – https://prnt.sc/tn4URR9NgeaL
Best Regards,
- Victor
Hello! Quick question regarding the AJAX response when filtering. If you select any filter, the response includes the whole HTML for the full page, instead of just the filtered posts. Is this how it is supposed to work?
I imagine you are doing a sort of diff on it so that it seems like it just refreshed the contents, but, shouldn’t it only receive the filtered contents, so that they can be appended to the page, instead of fetching the full page? Thanks so much!
Hi perezcarreno,
Thank you for choosing Filter Everything PRO.
There is an “HTML id or class of the Posts Container” for that.
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 will be processed. It may take some time – days or weeks.
If you want to get 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, Victor! That was fast! We have multiple licenses (one for each client), so I’ll reach out from their account.
Hello again, Victor! I have renewed support on this account for efficiency.
We are using the “HTML id or class of the Posts Container”, but the network response for the request is always the full page. Is this the expected behavior?
To clarify, the page does not reload, which is good. To the user, it seems like only the results section changed. However, what we’re worried about is the response for the network request being so large (as it contains the full page).
Thank you for your time! -Armando
Hi Armando,
Yes, this is normal behavior. Because only HTML comes there which is a couple of kilobytes. The main part of the page is images and other multimedia files. And while they are in the AJAX response, but not inserted into the page, the browser does not request them from the server and does not load them. Therefore, the loaded traffic as a result is small.
Best Regards,
- Victor
Thank you for your response, Victor. Are you saying that you are querying the full page from WordPress then? The reason I ask is that the response can take upwards of 3 seconds to come back, and that is most likely because it has to process the loading of the whole page (including some PHP conditions that may or may not be needed if we were only receiving the posts in the response).
- Armando J.
Hi Armando,
No, it doesn’t have anything in common with such a long response time. As we have for example such clients sites that are using our filters for more than 6k products and everything is working fast for example here – https://chaneysjewelry.com/shop/category-fashion-jewelry/
Everything is based on the plugin set that you are using for your site and server hardware, plus database optimizations and in general site optimizations. It is not triggering anything else just returning the HTML of a few kilobytes.
Best Regards.
- Victor
Thank you, Victor! I understand. If those sites are fast to start with, then loading the page’s HTML will be fast as well. If the site is slow (because of plugins, etc) then it will be slow to get the HTML back. I don’t think your plugin is the issue, I was just trying to understand if you were querying the page or not, now I know.
Thank you in advance for your help! We have been using this plugin for several months without any problems. We have 1 filter set (Products) containing 11 Filters. Added another today, assigned it to an attribute, gave it a proper title, proper prefix and assigned view as “checkbox”. The same process as we have completed previously. When clicking update, it appears to save and the filter is still visible. However, when navigating away/back to the plugin settings – the new filter is no longer visible. I checked the database, and it does not appear. For testing, we have tried downgrading WP to 6.0, installing newest version of Filter Everything Pro as well as checking for conflicts against other plugins to no avail. Additionally, tested several versions of PHP – the newest being 8.0.29. Is there something that might be causing the filter not to save?
Hi jmoseman,
Thank you for choosing Filter Everything PRO.
Please, send us credentials to your /wp-admin following this document so we can check it.
Best Regards,
- Victor
Thank you Sir.
I PM’d you credentials to login Sir.
Hi jmoseman,
Everything is simple you just need to activate the plugin license in order to add new filters or update them. If you go to the filter set and hit update you’ll see this error – https://prnt.sc/PfxmWeogAnQ0 in order to make it work please activate the license.
Best Regards,
- Victor
Oh wow. Figures it would be something simple like that. Question – for this client/website we have a staging domain for it. Same project/domain otherwise for testing before pushing to production. Would we need another license in order for that to work? Or deactivate / activate as needed? Thoughts? Don’t mind buying another license…just looking for the optimal solution.
Hi jmoseman,
By default you can use the license key on 2 sites, one is for dev, and the second on production. If you want to use it on another site you can deactivate it on an unneeded site and use the license on your current one.
If you don’t remember or don’t have access to the old domain where the plugin was activated, you can send via PM your license key so we can deactivate it on our side from all of the domain names. And you can manually activate it on the needed sites.
Best Regards.
- Victor
Is it possible to select several items simultaneously and not filter until the apply button is clicked?
Hi elmondelatele,
You can turn on the “Apply Button” mode in the filter set settings. But after choosing each filter option they should be updated to show the correct and updated information, then click Apply and the filters will be applied to the items on the page.
Choose simultaneously more than one option need custom coding and checkings in order to prevent errors.
Best Regards,
- Victor