8973 comments found.
Hi,
I’m using divi with a custom build woocommerce store. The filter does not update the search results. This only works when I don’t use a custom store but just the standard woocommerce one. There’s full divi support but I can’t seem to get it to work. Could you please help me out? This is my url: https://groots-trading.com/shop/When selecting a filter the results won’t update.
Looks like AJAX doesnt work for Divi at all. How to fix that?
Hi Marnickdegroot
Thank you for using Filter Everything PRO.
To make AJAX work you have to specify correct value for the “CSS id or class of the Posts Container” option and it should be #shop-result
Also you have fade-in effect on your product images and it may not work after AJAX loaded filterd products. To solve this problem you can disable fade-in effect or to re-init its JavaScript code after AJAX finished its work. Here are common details about such problem – https://filtereverything.pro/resources/ajax-related-problems/
Hi. I recently purchased your plugin. I am trying to get it to work on a custom archive I have rendered using the WooCommerce [products] shortcode. Specifically, I am using the shortcode with the ids attribute like so: [products ids=”83,68,70,66,64,62”]. I have created a filter set with only the product category filter in it. The filter widget correctly displays the categories and number of products in each category. But when I try to filter the products by any one of the categories it does not work. I am running the shortcode on a custom post type template using the “echo do_shortcode()” expression.
One more thing. When selecting where to filter, I can only select a single instance of a custom post type. So if I have a custom post type called “listings”, I can target only one listing per filter set. How do I get the filter set to run on all listings?
Hi itfluently
Thank you for using Filter Everything PRO.
Please, send me credentials to your /wp-admin in accordance with this document I will check it myself.
Thank you.
Hi Stepasyuk, I have now done this. Regards.
Hi itfluently
Great. I”m glad that your problem is solved now
Thank you for notification about that.
I’m sorry Stepasyuk, the problem is not solved yet. Apparently, I have not communicated clearly enough. I have merely completed your instructions regarding granting you access to my website and installing certain plugins. Please take a look.
Hi itfluently
It looks like conflict with some of your plugins or maybe custom code. When filter tries to load page with results it always is 301 redirected to the initial page.
I’m not sure what the plugin generates this conflict and it is something that you have to find by yourself. But as solution I disabled permalinks in your plugin instance by adding next code string in the functions.php of your active theme:define( 'FLRT_PERMALINKS_ENABLED', false );
In this case it works as expected.
Also I’ve added code that correctly opens the tab #store on your page after applying filters.
Ok. Thank you Stepasyuk. How do I run the same filter set on all single listings? At the moment I can only run my filter set on one listing. Also could you show me how to turn on Ajax for my filter set?
Hello again. I been able to get Ajax to work, but can’t get my filter set to run on multiple listings.
Hi Stepasyuk, still waiting to hear from you about this. How do I run the same filter set on all single listings? Listings are a custom post type in my scenario.
Hi itfluently
Sorry for the late response.
If your listings are singular pages from WordPress point of view, you have to create individual Filter Sets for every such listing (singular page).
I know that it is inconveniently but first of all WordPress singular pages were designed to place there single post content. As Page Builders allows to place there post grids my plugin also allows to filter that grids. But in 99% cases such post grids are different from one single page to another single page. And this requires different Filter Sets as different WP_Queries should be filtered in different way.
I can add to my plugin feature to allow to filter on multiple singular pages with the same Filter Set, but it can be possible only in case if all these singular pages contain the same post grid. And in most cases such option will be to0 complex for understanding for most of users and 99% of them will ask me why their Filter Set does not work on all their singular pages
So current solution is the least of evils and requires individual Filter Set for every single page.
Aww…I was hoping this would work. I did try out the free version available on WordPress.org before buying. The field, “Where to filter?” is disabled for filter sets in the free version, so no way of knowing if this feature would work for me without a purchase. It is not feasible to create clones of the same filter set for every listing – imagine if I had 1000 listings
Regrettably, I must ask for a refund. Perhaps I can find a solution elsewhere. Thanks for your understanding.
Hello itfluently
If you want to use the same Filter Set on every singular page you can use next code example to achieve that:
add_filter( 'wpc_relevant_set_ids', 'set_my_filter_set_for_all_singular_pages', 100, 2 );
function set_my_filter_set_for_all_singular_pages( $filterSets, $queriedObject ){
// for example desired Filter Set ID is 1729
// var_dump( $filterSets ); uncomment this one time on the page, where you pointed your Filter Set to get array's data like 'query', 'query_location' and so on
if( isset( $queriedObject[ 'post_id' ] ) && in_array( 'page', $queriedObject[ 'post_types' ] ) ){
$filterSets = [];
$filterSets[] = array(
'ID' => (string) 1729,
'filtered_post_type' => 'post',
'query' => 'cf5076e3c7b78db6761d8f3cd553e838', // query hash
'query_location' => 'page___1587',
'query_on_the_page' => true,
'page_search_keys' => array(
"page___1587"
),
'show_on_the_page' => true
);
}
return $filterSets;
}
Hi there – just purchased your plugin. I’m having trouble with Category Order – My hope was to have the categories appear in the order I’ve defined in the Product Categories section, I don’t think this is an option? There is a greyed-out option called ‘Menu Order’ – not sure if that was supposed to be it. Default order looks to display the order in which the categories were originally created. Is there a way to achieve this? Thank you.
One more item – is it possible to hide filters if there are no results rather than just show ‘0’?
Hi larrychartier
Thank you for purchasing the plugin.
By default Menu order value is available for WooCommerce attributes that contains this order. For Products categories it also available in the next plugin version. I can send your this pre-release version if you write me message in PM, but please let me know here that you sent it.
To hide empy filters please select Empty terms – > Always hide in the Filter Set settings.
Ok – that would be great. Thank you. I’ll send you a PM now.
Hi larrychartier
I’ve sent you email with link to the pre-release plugin version.
Are there any plans to add a post content/title Search field to the filters (not just filter search)? If not do you have any suggestion on what to use in conjunction with your plugin?
Hello MartinNorton
Sorry for the late response. Users with valid support period have higher priority in the support schedule.
I have plans to add search field compatible with filters and especially with the AJAX function, but when this will happend I do not know. It may take several months for implementing.
Any search plugin or feature (for example WordPress default Search widget) is compatible with Filter Everything PRO if they use WP_Query for their search algorithm. In other words you have to test them manually to find out if they are compatible.
Hello MartinNorton
I’m glad to inform you that built-in Search Field compatible with filters, AJAX and that allows you to search Woo products by SKU was added to the latest plugin version 1.7.8. You can update it automatically if you have activated your License key or download zip here on CodeCanyon.
Thank you. Regards.
That’s great news, thanks for the update!
Hello! I have created an seo rule according to the documentation. Enabled indexing of the necessary attributes. In the seo rule, I selected the necessary filtering parameter, filled in Title, Description, H1. But the rule does not work: Title, Description and H1 do not change on the filtering page. The site is open for indexing. In the “Indexed Filters” settings, I enabled indexing of the necessary fields, but indexing was not enabled on the site: there are canonical references to the main category. What could be the problem?
Hello Booozz
Thank you for purchasing the pluging.
Please, try to check Indexing Depth value for your filtered post type in the Filters -> Settings -> Indexing Depth.
Thanks! Now the Name and description are displayed, but the H1 specified in the rules is not displayed. Could it be related to the features of the wordpress theme?
Sorry, I made a typo. Title and descriprion are displayed
Hi Booozz
Yes, exactly. Your theme does not use typical WordPress hooks/actions for the H1 title and that’s why it does not change by SEO Rule.
By default Filter Everything uses next hooks to modify H1:
add_filter('the_title', [ $this, 'seoH1' ], 10, 2 );
add_filter( 'woocommerce_page_title', array( $this, 'seoH1'), -5 );
add_filter( 'get_the_archive_title', array( $this, 'seoH1'), -5 );
add_filter( 'avada_page_title_bar_contents', [$this, 'seoH1'], -5 );
add_filter( 'post_type_archive_title', [$this, 'seoH1'], -5 );
add_filter( 'elementor/utils/get_the_archive_title', [$this, 'seoH1'], -5 );
You can attach SEO Rule’s method to your theme hook:
if( class_exists( 'FilterEverything\Filter\Pro\PluginPro' ) ){
$seoFrontend = \FilterEverything\Filter\Container::instance()->getSeoFrontendService();
add_filter( 'your_theme_h1_hook', [$seoFrontend, 'seoH1'], -5 );
}
You have to add this code in the functions.php of your active theme and change it in accordance with the hook your theme uses.
Hello Stepasyuk! View in Widget -Slider not working with custom field (ACF numeric) I get 0-0. If I named the custom field price, then it works. How is this possisble? Can you help me figure it out? Thanks
Hello pcinfogr
It is possible only in one case – data stored in the Custom Field you specified in the Numeric filter:
1) are not numbers
2) they have different structure for different posts (somewhere numbers, somewhere serialized data)
3) you specified wrong meta key for your Custom Field
All these can be checked directly in the DataBase for example with PhpMyAdmin pluign for WordPress.
Hello again! Thank you for the response.
I have already checked the above.
1. the ACF field is numeric 2. All the fields in posts are integet (50-1500) 3. It is the correct since is visible in the filter form
All the other things are working correctly. This field is also visible in form but only shows (0-0 If I try this (the same exactly proccedure) but instead of my field, have a field name price, its working.
I also have qtranslateX as 2 languages for WP, if that makes any diffrence. Although the other things are working correctly
Hi
I have 3 custom taxonomy filters running and am trying to get the posts that display to follow in an order set by a plugin which allows you to set the order for each category (https://wordpress.org/plugins/reorder-post-within-categories/).
If there is another way to do it then great, not fixed on the reordering pluing … custom order for results would be the last bit of the jigsaw of the site.
Thanks in advance Richard
Hi Ctrl-X
Thank you for using the plugin.
In general Filter Everything PRO allows you to sort your filtered results by many parameters with Sorting widget. But it seems you need them to be sorted in specific order by default. If you do not want to use any plugins for that and do not use Sorting widget you have to add specific code to your WP_Query that sorts results by desired criteria. You can achieve this using hook ‘wpc_filtered_query_end’ that is presented in the plugin and it works only for filtered WP_Query.
P.S. You have nice username, btw 
Thank you for getting back to me. I have solved the problem using another pluing so would be very grateful if you could process the refund. Thank you.
Hi Ctrl-X
I’m sorry that you were not able to make it work with Filter Everything PRO.
If you need to request a refund, please use appropriate form in your account here on CodeCanyon.
Hi,
I have another problem.
Here the Screenshot: https://webdesign-mallorca.eu/select_screen.jpg2 old tags “Grundstück (0) and Haus (0)”
Where can I delete them? There not in Post or in the Filter anymore but there are stil in frontend.
Thank you and best regards
Hi SilentWorker
You can exclude these terms in More options -> Include/Exlude terms option and they will never appear in the fitlers.
Or if you want to always hide empty terms, please set it in the Empty terms -> Always hide in your Filter Set settings.
Hi, The only strange thing is that they are not listed here: https://webdesign-mallorca.eu/backend.png
I’ll look at it all again step by step … Best Regards & thank you
Hi SilentWorker
As I see from your screenshot you configured it wrong because you have no WP_Queries in the “And what to filter?” field. It means that on the page you specified in the “Where to filter?” field there are no posts specified in the Post type field.
Please, add these posts Beiträge on the page “Immobilien” first and after specify correct WP_Query.
Thank you, I had already read this and of course there are posts on the “Immobilien” page.
I think the error comes when I adjust the posts. Image size, grid etc.
I’ll take another look over the weekend and get back to you. Thank you & have a nice weekend
Hi,
Posts in “Immobilien” are available. Now I thing i have at least found the problem. But I still don’t have a solution.
When I insert the posts and adjust the layout, everything works. BUT as soon as I select only one category (Immobilien), the filter search fails and i dont have a WP_Queries in the Filter menu.
Best regards
Hi. I’ve been using the plugin for several months and I congratulate you because it’s done very well. But these days I have a problem with a checkbox of a custom field.
The filter recognizes the custom field which is correctly shown, but when I try to filter it does not return any results. The custom field is text (pods), like others that work correctly.
In private I’ll send you the license, the link to the site and the login credentials.
Sorry if I add a problem. The button that opens and closes filters on mobile devices disappears when I activate a filter. I also tried the pop up version, but it doesn’t work.
I solved the button problem by consulting the documentation. Sorry, I didn’t find it before!
https://filtereverything.pro/resources/typical-problems/ https://filtereverything.pro/resources/the-bottom-widget-button-does-not-appear/Only the problem of the checkbox field that returns no results remains to be solved.
Hello mattiascai
Thank you for using the plugin.
The problem is in your data stored in this field. Some of them have serialized data, some of them are simple strings – https://prnt.sc/kYiyayBkdhFZ
It seems you changed the type of this field and did not update all your posts after that. To be able to filter by this field you have to make all this data in the same format – either all fields should be strings or all these fields should be serialized values.
—
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.
Hello, I solved most of my issues through the documentation but have two questions, please see the following page:
https://oddflower.co/collection/vintage/upcycled-denim/1) After filtering by a checkbox, “Showing all _ results” only updates the results number after page refresh. How can we get this to update with AJAX?
2) Is it possible to use query string instead of subdirectory in URL? For example, we want to use something like https://oddflower.co/collection/vintage/upcycled-denim?size=waist-34 rather than https://oddflower.co/collection/vintage/upcycled-denim/waist-34/
Thank you!
Hello refreshingdesign2
Thank you for purchasing the plugin.
1) It can be solved easily if you set for the “CSS id or class of the Posts Container” option such container, that also inlcudes your phrase “Showing all 25 results”. Optionally you can move WooCommerce hooks this phrase inside current container specified in the option.
2) Yes, sure. Just add in the functions.php of your active theme next code:define( 'FLRT_PERMALINKS_ENABLED', false );
Hi, in my site the SEO Description is not overwritten, can you tell me how to fix it? thank you
Hi ibeppo993
Thank you for using the plugin.
It seems your theme uses some another hook to display Archive Description than most of other themes.
If you use WooCommerce it should be hook ‘woocommerce_after_shop_loop’ if you don’t use WooCommerce it should be hook ‘get_the_archive_description’. If no one of these hooks is used on your site, you have to add it manually regarding to the Example 1 in this article – https://filtereverything.pro/resources/seo-rules-troubleshooting/
is there any simpler solution for Elementor? Thanks for the reply
Hello ibeppo993
I think in Elementor you can try to use one of the next hooks to display SEO description and specify it in the code from this manual – https://filtereverything.pro/resources/seo-rules-troubleshooting/elementor/page_templates/canvas/before_content elementor/page_templates/canvas/after_content elementor/page_templates/header-footer/before_content elementor/page_templates/header-footer/after_content
i tried all 4 hooks you suggested adding the function in the functions.php. Now I see both descriptions, one specific for the brand + category combination (managed by the filtereverything plugin) and one only for the category (woocommerce default description). do you have other solutions? thank you
Hi ibeppo993
Try please to put this code in the functions.php of your theme:
add_action('wp_head', 'wpc_add_filters_seo_description');
function wpc_add_filters_seo_description(){
if( class_exists( 'FilterEverything\Filter\Container' ) ){
$seoFrontEnd = FilterEverything\Filter\Container::instance()->getSeoFrontendService();
$your_new_hook = 'woocommerce_archive_description';
remove_action('woocommerce_after_shop_loop', [ $seoFrontEnd, 'showSeoDescription' ], 5);
add_action( $your_new_hook, [ $seoFrontEnd, 'showSeoDescription' ] );
}
}
If the ‘woocommerce_archive_description’ will not work for you, you can try to replace it with some of 4 Elementor hooks.
I am having trouble getting Filter Everything Pro to work with other plugins, specifically, I installed Iconic’s Show Single Variations plugin (https://iconicwp.com/products/woocommerce-show-single-variations/) and Fiber Everything Pro stopped working.
I have a support case open with Iconic, and I have a support case open with Barn2 for their Product Filters plugin (https://barn2.com/wordpress-plugins/woocommerce-product-filters/) which also failed to work with Iconic.
I have removed your plugin for now, sine it was rendering as a blank space on the site.
Have you seen this before? Can you help us troubleshoot?
Hi CharlestonWeb
Thank you for purchasing the plugin.
I’m sorry that you didn’t get them to work together and I have already registered compatibility issue with the Ionic plugin. I will check this and let you know about the result, but it may take some time.
Can you provide information around why it is not working? I have a support case open here with out, and IconicWP, and Barn2 and WooCommerce. I am hoping I can be a central point of resolution or somehow find out what the gap is and try to fix it myself faster.
Can you please share details or documentation on what the known cause is?
Hello, I have 3 questions for my site please: https://www.sport-in-place.com/listing/category/velo-appartement/
1 – I did not succeed in the filter installed according to the price of products: https://ibb.co/6vWfBYB / https://ibb.co/Gt9bJnF
2 – I did not succeed in the filter installed according to the customer reviews on products: https://ibb.co/2h8QJ0y
3 – I just wanted to know if you know when this possibility will be offered by the plugin: XML sitemap for indexed filtering result pages IN PROGRESS: https://ibb.co/hBTpgsG
I thank you in advance Sincerely Bruno
Hello Bruno.
I would like to help you with issues 1 and 2 but all that I can suggest you is to look on these examples for Price and for Rating filters and create them by advices on these pages. Unfortunately filter configuring is not provided under CodeCanyon item support policy.
About XML sitemap – I think it will be ready not faster than in February 2023.
I need some help with filter display ordering please. I’d like the options to display in numerical order but the “kg” text is preventing that from happening. It should show as:
1kg-50kg 51kg-100kg 101kg-150kg 151kg-200kg 201kg-300kg
...but using ‘Term name <<abc>>’ it shows is:
101kg-150kg 151kg-200kg 201kg-300kg 51kg-100kg 1kg-50kg
The Sort Terms By ‘menu order’ option is greyed out. Would that work (and if so, how do we access it)? I’ve tried the ‘wpc_terms_before_display’ hook code you suggest but haven’t had any luck – I’m not sure what I’m supposed to be doing with that and can’t see any documentation related to it. Any pointers please?
Thanks
Hi timdriver
The ‘menu_order’ option is available for WooCommerce attributes only as they store their order in term meta field with key ‘menu_order’. All other Taxonomies or Custom Fields are not supported as they have no such value.
Indeed, if no one from the sorting options is not good for you you can use hook ‘wpc_terms_before_display’ to sort them via code. But this expects that you are familiar with PHP or you have ask a developer to help you to solve this issue.
I would like to help you more with this, but unfortunately such custom coding are not provided under CodeCanyon item support policy.
Ok, that’s frustrating but never mind. As a workaround I’ve prefixed each item with A, B, C etc to get them to display in order and now just need to apply an on-the-fly search and replace to remove those. However, the usual str_replace php code isn’t working for this. Is there anything in the plugin code that’s likely to be the cause of this not working please? Any help you can offer here would be very much appreciated so that we can get past this annoying problem. Thanks in advance.
This is the code I’m using in functions.php, which isn’t having any effect:
// Fix Filter Everything sidebar ordering function replace_text($text) { $text = str_replace(‘A001-50kg’, ‘1-50kg’, $text); $text = str_replace(‘B051-100kg’, ‘51-100kg’, $text); $text = str_replace(‘C101-150kg’, ‘101-150kg’, $text); $text = str_replace(‘D151-200kg’, ‘151-200kg’, $text); $text = str_replace(‘E201-300kg’, ‘201-300kg’, $text); $text = str_replace(‘F301-500kg’, ‘301-500kg’, $text); $text = str_replace(‘G501-800kg’, ‘501-800kg’, $text); $text = str_replace(‘H801-1500kg’, ‘801-1500kg’, $text); return $text; } add_filter(‘the_content’, ‘replace_text’);
Hello timdriver
I’m sorry, I can’t help you with this as it is not included in the CodeCanyon item support policy.
Hello timdriver
Since our discussion has reached an impasse, I propose to resolve this situation in a way that is beneficial to both of us. Please send me a message via PM, I have a win-win offer for you.
Thank you.
Hi. I’ve just bought the Pro version of your add-on but the license key doesn’t work. When I enter it I get the error message “Invalid license key. Please enter correct license key.” I really need to be using this plugin today so would appreciate an urgent fix please. Thanks.
Hi timdriver
Thank you for using Filter Everything PRO.
Please, note that License key and CodeCanyon purchase code are different things. To set License key, please go to Filters -> Settings -> License, click on the “Get your License Key” https://prnt.sc/-ehm9df3H_XT and you will be redirected to the new page. Log in there with your Envato credentials and you will see your License key for the Filter Everything PRO plugin.
Thanks – sorted!
Is it possible to create subcategories?
Hi luukspecht
I’m not sure what you exactly mean, but if you want use hierarchy in a filter, you can enable it under More options section if the taxonomy selected for the filter is hierarchical. Here is example how it works and looks – https://demo.filtereverything.pro/posts/category-beauty/ please look on the Category filter.
I want to sort/filter Review badges (https://businessrating24.com/badge-test/). For the Badges i use a plugin called „WP reviews Pro“ I try to allow users to sort the Badges by ‘highest/lowest number of reviews’, ‘alphabetic order’ & filter the badges by ‘average rating. The plugin „WP reviews Pro“ doesn’t have the feature to filter/sort badges and i was wondering if it’s possible with this plugin.
Hello gabriel_togan
Here is support for the PRO versoin of the plugin only. I already answered you on WordPress forum about this problem.
Presale Questions:
I am a user of the Free version of your wonderful plugin, but I know need some features of your PRO version, but I have a few questions. Please let me know if this is doable with the PRO version.
1. it is possible to display only subcategories on a category page? for example. I have 6 categories and each category has 20 subcats and if user is on xyz.com/category, Is it possible to only display the subcats rather than all the other top-level categories?
2. Is it possible to add color swatches?
3. is the star rating available in PRO?
Thank you so much. I look forward to your answers.
Hello monanzallc
Thank you for your interest in Filter Everything PRO.
1. Yes, it is possible. You can achieve this by enabling option “Empty terms” – “Always hide” and if posts on your current category are not attached to other categories they will not appear in the filter.
Also you can specify manually what exactly category terms should be included in the Filters widget. But in this case it requires to create 6 Filter Sets for every parent category.
2. This feature for the moment is added in my development schedule, but not implemented yet. You can achieve this, but only via small coding and using term HTML hooks – https://filtereverything.pro/resources/hooks/#term-html-hooks
3. Yes, star rating for WooCommerce products is available in PRO.
Credentials for support sent! Thank you!
Hi 804seedbank
Thank you for your credentials.
I checked your site and didn’t find any Sorting widget. Please, provide me with details what exactly and on what page do not work. Please, remember, that Sorting widget works with products that are filtered (specified in a Filter Set in the “And what to filter?” field)
Please specify why your filter is loaded, even if the filter widget is not added to the sidebar? https://prnt.sc/VffkcHbcnrLd
I think it’s worth teaching the filter not to load if it’s not in a specific category.
It seems that this is the secret of stable work with the Woodmart theme. After excluding the plugin loading from some categories, problems began with Woodmart regarding ajax page loading.
Hi stasonua0
Nice question, thank you.
Some of the customers configure plugin to work with redirection from the page with Filters widget to the page with filtering results. That’s why Filter Everything requires to check on every site page if it is configured to work on such pages. But all these checkings optimized to be lightweight and do not load a site.
I’m not sure what exactly you mean about problems related with Woodmart theme. Please, provide me link to the page with example of the problem and explanation if it is not obvious.