8967 comments found.
Hi there,
I notice when I click on a filter option it shows me “10 products found” etc.
Is there anyway to view the total number of products like this before the filter is chosen?
Maybe it’s a feature you already provide but I am un aware of how to use it.
Hi matthewm174
No, there is no such option, as it shows only when the filtering is applied to the page. You can write your own code which will count products on each page and display that number.
And with the help of template overriding – https://filtereverything.pro/resources/templates-overriding/ and function:
/**
* @return bool true if it is a filtered page and false if not
*/
flrt_is_filter_request();
Usage example:
<?php
if( flrt_is_filter_request() ){
// Your useful code
} ?>
You can write put it all together, when showing all products counter and when switching when the page is filtered.
Best Regards,
- Victor
Hello Team I was wondering if you could help me add a Review Score filter to my theme. My theme already has one, but I can’t find it in the Post Type to filter.
Second, I can’t find a button for Clear (to remove the filter from the page) is there a way to show it in the filter set
Thanks for your help
Hi tripidaysegytours
The star rating filter is only available for “Product Visibility” and there is a function that adds the necessary HTML to the terms of this filter – https://demo.filtereverything.pro/example/by-rating/
Theoretically, you can also attach it to your needed entity, but you will have to slightly modify the code of this function in the plugin.
function flrt_term_rating_stars($html, $link_attributes, $term, $filter)
{
$rating_slugs = array(
'rated-1',
'rated-2',
'rated-3',
'rated-4',
'rated-5'
);
if( $filter['e_name'] !== 'product_visibility' ){
return $html;
}
if( ! isset( $term->slug ) ){
return $html;
}
if( ! in_array( $term->slug, $rating_slugs, true ) ){
return $html;
}
$rating = 0;
if( mb_strpos( $term->slug, 'rated-' ) !== false){
$pieces = explode("-", $term->slug);
$rating = isset( $pieces[1] ) ? $pieces[1] : 0;
}
$rating_html = '<div class="star-rating"><span style="width:' . esc_attr( $rating * 20 ) . '%">' . sprintf( esc_html__( '%s out of 5', 'woocommerce' ), esc_html( $rating ) ) . '</span></div>';
$html = '<a>'.$rating_html.'</a>';
return $html;
}
If you have enough PHP skills you can modify it to your own needs.
2) You need a chips widget for it – https://filtereverything.pro/resources/chips-widget/ also you can use a shortcode for it, in order to place it in the needed place on the page.
Best Regards,
- Victor
Hi there,
My filters are showing Nil (0) results even though I’ve got my posts categorized and also assigned other various filterable options to each post.
I’ve just purchased my license and input it within the backend and it’s telling me it’s invalid.
Wondering if this is why things aren’t working?
Would appreciate some assistance. Thank you
Hi websiteguyjh
Thank you for choosing Filter Everything PRO.
1) Go to the filter set settings, and in the “And what to filter?” choose another query and hit update. Then go to the page with the filter and test it, do not forget to refresh the page before testing it. Also, please check the Quick Start guide – https://filtereverything.pro/resources/quick-start/
2) In order to get the license key, please follow those instructions - https://filtereverything.pro/resources/license-key-issues/#how_to_get_the_license_key please use the browser in incognito mode during this procedure.
Best Regards,
- Victor
I keep getting the message “No one Filter Set is related to this page. you can configure it in the Filter Set -> “Where to filter?” Field.
However, in my filter set I have tried post type as Posts and Strains. Adn Where to filter > Pages > Strains
No combination I do works. I am using the Avada theme and ACF for the strain posts. The page is Strains.
Hi Matthewbb
Thank you for choosing Filter Everything PRO.
Can you please send a link to this page so we can check it?
Best Regards,
- Victor
Sure here is the page: https://www.hempies.co/strains
Hi Matthewbb
Hmm, this is weird. Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Just added and messaged you the password. I moved the site to staging to sort the issue instead of production: https://hempies.staging.tempurl.host/wp-admin
When you login you will see the ACF post type in the side menu called “Strains” that’s the strain database and then in pages the page is called “Strains” where I wanted to add the filter menu.
Let me know what you find!
Hi Matthewbb
Unfortunately, there are some issues on the login page, each time we try to log in, this error message appears – https://prnt.sc/rw5KwgxOEpD8
Best Regards,
- Victor
Ok I disabled recapcha can you try again?
So we set you an example on the staging site, please check it.
Also we edited the page with the Avada, and deleted that “widget” and placed the shortcode instead, and everything is working correctly.
Best Regards,
- Victor
What did you do for it to detect the strain query I couldn’t ever get it to do that?
Yeah when I try to duplicate what you did on the live site it says ” No WP Queries matched the post type “Strain” found on the page”
For the sake of time, I added you as a user to production too: hempies.co/hub
Hi Matthewbb
We have checked the site, and the issue is in the object cache. So if you go here and click reset – https://prnt.sc/Urrt6cO8w99D everything will appear – https://prnt.sc/nU9Ph9CoYkVU as it will flush the object cache.
You might want to check that because after updating the filter set, or refreshing the page the cache is caching everything again and it is disappearing.
So you need to go to the wp-content/object-cache.php and perhaps turn it off or configure it as you need, so it won’t cache queries on the pages.
Best Regards,
- Victor
Hello! I just bought the plugin. When searching for the widget using Elementor Pro it does not appear. What could be the cause?
I await your help please. Thank you very much
Hi leonardosalvioni
Thank you for choosing Filter Everything PRO.
You can find the filter widget in the WordPress section in Elementor named “Filter Everything – Filters”, but the Elementor search field won’t find it.
Best Regards,
- Victor
Hi Victor, could you please tell me which one is the “Wordpress section” in Elementor where I can find the widget?
(I’m editing the shop page with elementor)
Thank you
Hi leonardosalvioni
The WordPress section in Elementor – https://prnt.sc/5Df1dLwMtyZb
The plugin widgets – https://prnt.sc/eHkkkI_XjnSs There are only 3 widgets, not 4
Best Regards,
- Victor
I think I have the same issue than Matthewbb.
After I test a filter, I’m getting the message “No one Filter Set is related to this page. you can configure it in the Filter Set -> “Where to filter?”
Here a screenshot: https://prnt.sc/5vQzrs5a04Fn And the link to the page: https://emicakes.com.py/agendar/
Hi leonardosalvioni
We can see the screenshot, but we cannot visit the site for some reason it is closed.
Also, can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
I just sent you via PM a support account credentials with all permissions assigned. I hope it helps. Thank you.
Hi leonardosalvioni
We have checked the site, and this is a shop page. If you go to the pages, and check that page you will see “Elementor, Shop page” in order to choose this page you need to check “common WordPress pages + Shop page” in your case “tienda” it is working now.
Best Regards,
- Victor
Ok, understood. Thank you very much for your support and explanation!
I am looking for a plugin to help me create a mem website. Basically, we are adding a profile” as a “post” but on the front end of the website we want to be able to put a search feature in place and then a narrow down option. E.g. a search bar which only searches for first name, last name, post id number or keyword and then a feature to enable them to filter profiles by gender, location, and career etc
Also important to mention we use Themify Theme and Themify Builder to set up the posts “profiles”.
Is this possible with your plugin?
Also, do you have documentation to help us design the plugin search to make it look modern / on brand?
Hi fnhc
Thank you for your interest in the Filter Everything plugin.
The search field uses the default WordPress algorithms. If you want to search only by a specific entity, you will need to write custom code that will extend this logic with the necessary conditions.
For this, you can use the WP “posts_search” hook to apply the required conditions – https://developer.wordpress.org/reference/hooks/posts_search/ For the needed CPT.
Best Regards,
- Victor
Hello, The following error shows when the filter only includes search, no additional fields, and the user is not logged in.
Notice : Undefined index: entity in public_html/wp-content/plugins/filter-everything-pro/src/UrlManager.php on line 56 Notice : Undefined index: e_name in
https://dev.plantipedia.com/pollinators/The filter itself works fine. How can I get rid of the error? Thanks!
Hi jacc
Thank you for bringing this to our attention. We have forwarded it to the development team, and the fix will be included in the next updates.
Best Regards,
- Victor
Hi jagged_star613
Honestly, no idea what can be done here. You can try to modify the wp_query itself in order to make the needed order. But this will require experimenting in order to find the needed pattern.
Best Regards,
- Victor
I need to display different filters depending on the page For example, I have two pages, page a and page b. And I have 3 filters, filter 1, filter 2 and filter 3. I need to show only filter 1 on page a And on page b, filters 2 and 3 should be displayed. I am using elementor to create the web page
Hi toscanocontrols
Thank you for choosing Filter Everything PRO.
Unfortunately, you need to create a filter set for each page, there is no ability to place one filter set on certain pages.
Best Regards,
- Victor
Yes, that’s what I want to achieve I have 4 elementor templates created for the 4 product groups I have. And I want to create a filter for each one. But when I add the widget I can’t choose which filter I want to display.
So in order to display a filter on a certain page you need to specify it in the filter set settings “Where to filter” like Pages + MyPageName. That page should have either a filters widget or a shortcode to display filters.
If you displaying multiple filter sets on one page, you need to place the exact amount of filter widgets or shortcodes to display each of them. And you can use the filter set settings at the bottom priority, in order to display each filter set with a needed order.
Best Regards,
- Victor
This option that you mention doesn’t allow me to choose a specific Elementor template.
The templates are not singular pages, not posts, not archive pages, they are templates to display the data on the applied page. The template itself is just a part of the page responsible for what logic and looks it would use.
For example, let’s say you have the template “cars” You need to create some page and only then apply this template on the page, and only then apply filters on this page that use your template “cars.”
Best Regards,
- Victor
that’s not an option that works for me. I don’t want to create pages since everything works according to templates and their searches according to the user, can’t I show the filter according to an id, where can I look at the id of the form?
In case this is not possible, is it possible to get a refund from the plugin?
Can you please send a link to this template so we can check it? We are not completely sure what you are referring to by Elementor templates.
Best Regards,
- Victor
We have been testing the plugin for several days and it is very incomplete. We cannot make modifications to created filters, we have to delete and recreate them. We request a refund.
The only thing that cannot be changed from the filter set when you already created a filter is its URL prefix.
But you can change the URL prefixes from Filters -> Settings -> URL Prefixes. If you provide more information on the issue, we can fix it.
In general, a refund is possible with the correct form from the account where the plugin was purchased. Please note that the support team is not working on the refunds.
Best Regards,
- Victor
Hello Team I have contacted to you 3 days ago regarding the filter and you have added a code to my function.php which woeks like charm but suddenly the code is not working anymore and doesn’t inhirit the filter to the rest of the categories Can you please check?
Hi tripidaysegytours
What that code did was just pull the exact category at the top, in order to take queries from it. It wasn’t adding anything else.
Best Regards,
- Victor
yes i understand but the queries doesn’t apply on the rest of the categories
Try to check those categories, perhaps they have unique queries, as we assume you did some changes on the site, and more likely it could make them all unique on each page. We are not sure how you are creating it all.
If you have backups you can follow step-by-step in order to find where exactly it stopped working.
Best Regards,
- Victor
Hi! I need to configure the links during filtering.
Currently, the filtering URL with parameters looks like this: /apartments/?max_area=49
I need it to be like this: /apartments/max_area_49 or something similar, so the link doesn’t have parameters.
I’m trying to do this using SEO settings, but not all fields are available there.
I’ll attach a photo and GIF below.
My attributes: https://imgur.com/WtWh8gS Settings “indexed filters” https://imgur.com/HWh8o7x Add SEO Rules GIF: https://kma.pp.ua/yr/1DsuZXP2gj.gifHi luchykkolya
Thank you for choosing Filter Everything PRO.
Not with the range slider, the range slider uses the GET parameter in order to meet good SEO Practices, in another case it will generate thousands of pages. What you can do is create a simple filter with a list of values like 30-40, 41-60, 61-100… in order to choose the needed amount of m2. But with the numerical range slider, it is not possible to create what you are looking for.
Best Regards,
- Victor
Hey can you please help I am trying to filter multiple records on one page and I cannot make that happen. https://habbibi.co.uk/a-la-carte-allergen/
I have several sections with titles and I need to get the system to filter the entire page, when you select the different enquiry it just Filter one please advise
Hi pwar1985
Do you want to filter 3 different WP_Queries at the same time? This is usually done to work with a single WP_Query. You can try to apply 3 more sets of filters, exactly identical on this page, and in each of them select a different WP_Query, then it can filter all queries with one filter.
Best Regards,
- Victor
Can you expand a little I really dont understand what this means
1) Do you want to filter it all at the same time in those 3 different columns – https://i.imgur.com/I1AhOYR.png
2) Are hose 3 different columns that use 3 different WP_Queries?
Best Regards,
- Victor
Hello,
Yesterday I bought a license but when I entered the license key it told me “unknown error”, it is not activated with the license key. The installation of the plugin is correct although it does not filter correctly, I suppose it is because the license is not activated
Hi mundoadaptador
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 send the license key that you are trying to insert in the license tab.
Best Regards,
- Victor
Guys, I would like to add a filter to previous searched results. I thought adding it trough a widget, but it wont appear. IS that the common error? Or am i doing something wrong. Should work this way right?
Hi stefanv38
Can you please send the link to this search page so we can check it?
Best Regards,
- Victor
Thats just an example, can i add a filter to a page like that?
So in order to place a filter set on the search page, you need you specify in the filter set settings “Where to filter” common WordPress pages + Search page. But more likely it won’t be compatible with your search plugin, as usually they are using their own search algorithms.
But it should work with the WooCommerce “product search” widget.
Best Regards,
- Victor
Actually it works like that with FIBO-search when following your tactic. I have one filter set As parts per brand/model (on category page with a shortcode) The second filter i want on the search result also brand/model i now added trough widget. But then it also show on the “parts per model page with filter one”. I set priority. But still. Almost getting there, anything i can do?
Can you send those two pages, where you set them on the search page and the second that appears on another page?
Best Regards,
- Victor
Actually it works fine now, maybe some cache/cloudflare or so delayed the changes. The priority works.
Another issue, that fits in the same thread. When going to mobile, the widget filter dissappears
https://gebruiktehoutkachel.nl/staging/?s=vlamplaat&post_type=product&dgwt_wcas=1&lang=nl https://gebruiktehoutkachel.nl/staging/product-categorie/kachelmaterialen/kachel-reparatie-bouw-onderhoud/onderdelen-per-merk/Sorry, my mistake. It only work because i hide that widget on archives. When deactivating that option (hide on archive) it does not work properly. The widget displays instead of the on page filter on the category.
Hi stefanv38
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Done, Backups DB and website are performed otherwise. BTW, it is on a staging site. Just testing.
We have checked the site, but we are a bit confused, about what exactly is not working. Perhaps we didn’t understand correctly what you were trying to do.
Can you please, explain it one more time, what isn’t working as it should, and what you want to make?
Best Regards,
- Victor
1) On this page https://gebruiktehoutkachel.nl/staging/product-categorie/kachelmaterialen/kachel-reparatie-bouw-onderhoud/onderdelen-per-merk/ i’ve got a brand/model filter set as shortcode. Asigned to that page. With prio = 1.
I also have the same kind of filter brand/model set for search results as a widget beneath the header. Prio = 0 default.
Now when viewing a search result, things are fine. I see the widget filter. https://gebruiktehoutkachel.nl/staging/?s=vlamplaat&post_type=product&dgwt_wcas=1&lang=nl
But when visiting the first URL https://gebruiktehoutkachel.nl/staging/product-categorie/kachelmaterialen/kachel-reparatie-bouw-onderhoud/onderdelen-per-merk/ it should show the filter that has prio 1 right? The one embedded a sa shortcode. Or am i wrong?
2) The filter in the widget is not visable when going to mobile screen.
So here is how it is working:
1) You create a filter set and place it on the needed page with the “Where to filter” and it will be displayed there. If you create another filter set and place it on the same page, then you can use priority, in order to choose which filter set will be displayed first and which one will be displayed second.
If you want to display two filter sets on the same page, you need to use either two widgets or two shortcodes but not mixed.
So the filter set that is placed on the search page and the one that is placed on the category page are not connected at all.
2) You can use the shortcode [fe_open_button] specifically on the search page in the needed place in order to display the mobile button there.
Best Regards,
- Victor
Victor, thanks. 1)Do i understand it right that, when using shortcode + widget. The priority setting wont work?
2)Is there another way then widgets to place the filter on searchresultpages?
1) We just tested it and it is working in all cases, even if you are mixing widgets and shortcodes.
2) Yes, you can use shortcodes – https://filtereverything.pro/resources/shortcodes/ you can find all of the shortcodes on this page. For example, you can check this search page template using hooks and place the shortcode on the needed hook.
Best Regards,
- Victor
Thanks for the super plugin. Questions and suggestions: - I have a numeric meta field. I need to filter by different ranges by clicking checkboxes. For example, each product has its own area value. I want to create a filter with ready ranges: up to 25, 25-35, 35-40, 40-55. I don’t need a slider for this. The filter should form “between” queries with many ranges. It wouldn’t hurt to add it in the next update. - Also, I would like to show the number of filtered products without brackets “)”. It would be nice to add a filter to the “flrt_filter_get_count” function in the wpc-helpers.php file (I have manually removed them from the code now, but they will reappear after the update). - Also, it would be convenient to choose different “Main queries” depending on the page. Because “Main query 1” suits me for the parent category, and “Main query 2” for the child categories.
Thanks again for the filter, it has helped solve a lot of problems.
Hi farma1342
Thank you for choosing Filter Everything PRO.
1) You can create this by creating another attribute with the needed terms like that and applying them to your products, so instead of the exact value, you will have 20-25, 26-30, 31-35…
2) You can use the templates overriding for this – https://filtereverything.pro/resources/templates-overriding/
3) This is only possible by creating multiple filter sets, so you can place on each category a unique filter set.
Best Regards,
- Victor
Not work, Widget not display, please help
Filter Everything — Filters widget on Shop page not work, not display please support
Hi lenka2014
Please check the Quick Start – https://filtereverything.pro/resources/quick-start/ it contains all of the basic information, it also contains popular examples of how to place it on the shop page, and other ones.
Best Regards,
- Victor
@FE_support : found problem, it look like incompile with WooSidebars Plugin that create More Sidebar for special section of website https://wordpress.org/plugins/woosidebars/ i deactive it and it shown
Hi lenka2014
Good job! We are glad to hear that the issue was resolved.
Best Regards,
- Victor
FE_support : please support to work with WooSidebars plugin
Hi lenka2014
We have tested it on our back – https://prnt.sc/yMZDlEwQjDYA
And everything is working wothout any issues – https://prnt.sc/F8-1KFeHSx3Y
Best Regards,
- Victor
FE_support : create 1 sideber for special 1 categories, it will not shown
Hi lenka2014
Can you please provide us with any video instructions or exact step-by-step instructions, we could try to recreate it?
Also, you can send the credentials to the wp-admin dashboard following this document so we can check it, with the link to the page with this issue.
Best Regards,
- Victor
Hi I ran into a problem when using the sorting widget.
When the page is initially loaded, sorting works. But after selecting any of the filters or the sorting itself, it stops working (after an AJAX request). Disabling “Improved dropdowns” solves the problem, but I need styling.
You can test it here https://catfoodcentral.co/advanced-search-test/. This page uses custom styles.
Or here https://catfoodcentral.co/advanced-search-old-2/. Testing page without custom styles.
At the same time, on the main page on which the filters were installed for the first time, sorting works https://catfoodcentral.co/advanced-search/
Please advise.
Hi avibuch
Thank you for choosing Filter Everything PRO.
There is some issue on the console you can check, and debug which plugin code is causing this conflict – https://i.imgur.com/arizArK.png
More likely there is some third-party plugin or theme code that causing this. You can deactivate one by one in order to find the one that causing the problems.
Best Regards,
- Victor
Hey Victor, Thanks for the fast reply.
We checked. The errors you mentioned are not relevant. We are not seeing any errors in the console.
Please check this page https://catfoodcentral.co/advanced-search-old-2/ There is no customization applied to the filters here. There are no errors in the console. Sorting still does not work after an AJAX request.
On another page it works correctly https://catfoodcentral.co/advanced-search/.
The filter settings are the same on these two pages.
Unfortunately we need more help please since it’s working on one page while it’s not working on another page.
Currently we’re facing two major issues: 1. Filters dropdown – Open/Close behavior 2. Sorting widget is not showing as expected (while working on another page).
I will truly appreciate if you can assist us further as these are major blockers for us that prevents us from releasing this page.
With your permission I DM’d you through here as well.
Hi avibuch
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Sure Victor – many thanks! Preparing and sending
Hi
I transferred the site from a subdomain to a new domain:
1- on the home page and in the store I have this message : ” There are no filters in the Filter Set yet. Please add them to the Filter Set related to this page. “
The filters exist, should I create new ones ?
2- how to reactivate the key for updates ?
Thanks
Hi Bluetreedigitaldz
1) In general, we do not have any information if any data were corrupted during this transfer. So we do not know what to suggest here, maybe simply going to the filter set and hitting the update button will fix it. Or you would need to delete them all and create a new one.
2) We assume you do not have the old domain anymore, and you didn’t go to the filters -> settings -> license tab to deactivate it there. So you can send the license key via PM – https://codecanyon.net/user/fe_support so we can deactivate it across all of the sites.
Best Regards,
- Victor
Hi team, just want to report that the 1.8.6 update has a few odd aspects. Before updating, then “Show Update Details” in WP goes to a blank page that says “Plugin Not Found”. A manual update after downloading the plugin shows the new 1.8.6 version correctly in the FEP panel, but WP keeps showing that an update is still needed. Only after clicking the “Update” button on the Plugins page does the update get processed with the “Update Available” notification going away.
Nothing here is super concerning, but I have not had this issue before, AFAIK, so wanted to report it.
Thx
Hi NetConfig
Thank you for bringing this to our attention, it seems to happen very rarely. We don’t know what it could be yet, but please keep us updated if this issue happens again.
Best Regards,
- Victor
I’m using the following code to display SEO Descriptions in a different part of the archive page:
add_action('wp', 'wpc_add_filters_seo_description');
function wpc_add_filters_seo_description(){
if( class_exists( 'FilterEverything\Filter\Container' ) ){
$seoFrontEnd = FilterEverything\Filter\Container::instance()->getSeoFrontendService();
// Replace this with your hook name
$your_action_hook_name = 'woocommerce_archive_description';
add_action( $your_action_hook_name, [ $seoFrontEnd, 'showSeoDescription' ] );
}
}
What’s the term to include H1 titles? seoH1 doesn’t seem to work.
Thanks!
Hi equicentral
Please check this page – https://filtereverything.pro/resources/all-about-seo/ at the end of the article there will be code examples.
Best Regards,
- Victor