8957 comments found.
license is being used on websites that are not mine please help
Hi dannyhomecarepulse
Can you please send the license key via PM – https://codecanyon.net/user/fe_support so we can deactivate it across all of the sites, so you can activate it only on the needed ones?
Please follow the instructions on this page: https://filtereverything.pro/resources/license-key-issues/#how_to_get_the_license_key to get the license key.
Best Regards,
- Victor
ok i just sent you a message with the details
Hi dannyhomecarepulse
Done! Now you can activate it on the needed sites.
Best Regards,
- Victor
I am having a problem that on a page without filters, the query strings for another custom function are getting interfered with. Is there a way to limit this filtering to only the pages with filters?
basically, I need to not redirect to another url based on the query strings given for a specific page, but to just pass them to the page
I resolved the problem which was due to the same query string as the Prefix for the Url in a filter.
Hi pcarter3
Thank you for choosing Filter Everything PRO.
Yes, the Prefix URL is very important, as it should be unique in order to not cause any issues. You did a great job resolving this issue.
Best Regards,
- Victor
Hello Victor,
Thanks for letting me know what the cookies were. After adding the first, the site worked ok. But just last week started running unbearably slow again at https://dcperinatalmentalhealth.com/
I’m at a loss of what to do. My host (dreamhost-managed wordpress) says its your cookies; they are creating too much of a load. I have started a cron job hourly that clears the cache, but I have no skill at trying to remedy this. I’m not even sure clearing the cache has anything to do with the problem we are having.
Anything you might suggest would be great. We cannot change the theme (AVADA). We use ACF to customize fields and the site is not on an Apache server but NGINX. Our security plugin is AIOS.
Any help is super appreciated—suggestions, websites, anything.
Hi KellyDillon
We are sorry to hear that you are facing such an issue on your site. We (the support team) personally use this plugin on multiple sites. The specs of servers are one core CPU and 2GB of RAM. Everything is working smoothly and without issues basically flying.
We have never encountered any issues like you are describing. During our support time (or on personal sites), there was only one person with a somehow close issue like you have and he also used some caching cookies solution (not sure if he was using the same hosting as you do).
We’d love to hear some more information on how our plugin cookies create too much load, exactly load on what, and in which way. If everything is working well for this time, and then suddenly working slowly, does it mean that it is affecting the server with time? If yes, then in which way the time is the factor here? Does the cookies caching stack up too many cached cookies, to the point it cannot work with them anymore?
As far as we see it, the issue is in this caching solution that cannot be configured in the correct way to stop caching cookies. Or to clean it to the point that it cannot work with them anymore. Can it be absolutely turned off from your site just for testing?
Best Regards,
- Victor
This is such a great response, Victor. I have tried to explain to Dreamhost, using nginx 1.25.4, php 8.2.15, Avada 7.11.9, WP 6.6.1 that this was unique and you did not experience this overall. So your detailed response is so great and something that I will pass on to them!
As an end user, I can tell you that the site will take a few minutes to load (but flag no errors). This is true for both the front and back end. Once I do get in, I purge the cache via the nginx plugin (I’ve tried other plugins, too), and that seems to take care of the problem for an amount of time (24-48 hours I don’t know exactly).
The slow speed happens across browsers and IP addresses as I’ve tested. But once I clear the cache everything runs ok for that time again.
You ask many specific questions and I appreciate that and will pass along. I appreciate the thoughtful response.
Most Sincerely.
Hi KellyDillon
Yes, the key is to have specific questions in order to understand the root of the issue. Please let us know their response, as we need to have at least some information on hand in order to understand it fully.
Best Regards,
- Victor
Hello Victor. It’s been a month but I wanted to tell you the results. Your plugin (as you know) is FINE! It really is such an excellent plugin.
In the end, Dreamhost elevated support discovered two Amazon bots (for Alexa) that were getting lost/trapped/bouncing around-I forget the supports language-on the site. They blocked the bot in the robots.txt page and for the past three weeks, the site has been as fast as it can be.
Thank you thank you Victor for your repeated attempts to try to help me. I am a humble person working on WordPress sites, and this issue was well beyond my skills. Although I did learn a lot.
It was never every your plugin, but as you suspected, something else. Amazon. Go figure! (well you might have).
Thanks again for your excellent plugin and outstanding support!
Hi KellyDillon
Thank you for your message. We are glad to hear that the issue has been found and fixed. We have encountered these bots a few times ourselves and there are really only one or two options: either use robots.txt or a firewall to block them as they ignore any setting.
Best Regards,
- Victor
Hello,
I have post grid with specific post type showing, and when pagination is enabled filters do not apply in page results.
On filter set settings, there is not option to choose for “And what to filter?”. When pagination is disabled, there is on option PostType Query.
Best regards
Hi dragspas
Can you please provide more detailed information on what type of page builder, or what exactly you are using? Also, please send the link to the page with the issue so we can check it.
Best Regards,
- Victor
I am using WPBakery page builder, and specific page element post grid.
Site is not public, it is under construction, so I can send you access credentials in private message.
Mine solution:
When change to pagination display style, than results are loaded by admin-ajax.php, POST request, but filter params are in url.
So just added pre_get_post action to apply GET params before added posts are loaded.
Hi dragspas
That’s a good solution when you are using AJAX pagination, it should serve the purpose. Good job!
Best Regards,
- Victor
Example:
<?php
$stock_statuses = wc_get_product_stock_status_options();
foreach ($stock_statuses as $status_key => $status_label) {
echo $status_key . ’: ’ . $status_label . ‘
’;
}
?>
This is the return:
instock: In stock outofstock: Out of stock onbackorder: Preorder
But in the filter everything pro
Filter by: Custom field Meta Key: _stock_status
In stock On backorder preorder
It is confusing. How to get the same values in the filter? In stock Out of stock Preorder
We need to have on back order sentence changed to word preorder on the filter itself.
Hi rekosa
In the plugin folder src/wpc-default-hooks.php file, there is this function:
if (!function_exists('flrt_stock_status_term_name')) {
function flrt_stock_status_term_name($term_name, $e_name)
{
if ($e_name === '_stock_status') {
$term_name = strtolower($term_name);
if ($term_name === "instock") {
$term_name = esc_html__('In stock', 'filter-everything');
}
if ($term_name === "onbackorder") {
$term_name = esc_html__('On backorder', 'filter-everything');
}
if ($term_name === "outofstock") {
$term_name = esc_html__('Out of stock', 'filter-everything');
}
}
return $term_name;
}
}
Which is using the next hook
add_filter('wpc_filter_post_meta_term_name', 'flrt_stock_status_term_name', 10, 2);
So you can write your own custom code, or change it in any way you want to the needed values.
Best Regards,
- Victor
The filter plugin does not seem to be working. I get an error saying: No one Filter Set is related to this page. You can configure it in the Filter Set -> “Where to filter?” field.
I have tried many combinations and none have worked. In “where to filter” I h ave set the field to “common worpress pages.” I don’t see the page I wanting my filters to work on in the next box. I have tried “search result page for selected post type.” I’ve then put in the “and what to filter” field: Search Tours query. Main Query.
This does not work and neither does a number of other variations I’ve tried. I’d like to get a refund if I can’t get this to work as I just purchased this plugin.
The page I am working on is audiometours.com/all-tours
Thanks, Blaise
Hi bsack
Thank you for choosing Filter Everything PRO.
Please check the quick start guide – https://filtereverything.pro/resources/quick-start/ in order to get all of the needed information.
If you want to place the filter set on a singular page, please check this screenshot – https://prnt.sc/ijSv2GalzJ5q
Best Regards,
- Victor
Hi Victor – all the reference material you provided only describes Woo Commerce products. I have custom posts that are labelled that I want to be able to filter that are not woo commerce products. I tried to follow the links you sent but still can’t get it to work as intended. Can you please point me to a step by step guide to achieve the following: 1. Custom pages or posts are created with labels on the page 2. On a elementor page, I want to be able to filter and search for the pages labelled, based on the labells I’ve given the individual pages (eg. one of the filters will be “location” and each page will have a location label.
If you can guide me to make this work according to my use case that would be much appreciated. If it can’t work for non woo commerce filtering I’d appreciate a refund.
Thanks
Hi bsack
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also please send the link to the pages where you want the filters to be displayed, and provide additional information on what CPT post you want to filter on those pages, so we can set you up an example on those pages.
Best Regards,
- Victor
I have an ACF custom post type called ‘cakes’. For that custom post type, I have the “Tag (post_tag)” taxonomy enabled. This allows me to add tags to posts in the Cakes post type which I plan to use with Filter Everything Pro.
Next I’ve set up a “Cake Filter” which I would hope to allow the user to filter cake posts which are displayed via page-signature-cakes.php which uses a WP_Query. The filter is set to filter the “Cakes” post type and filters by tags as checkboxes.
In the Settings for the filter, I have “Apply filtering if the page is” set to “Cakes” post type. The second box in that section set to “Any Cake Page (for a common query across all Cake pages)”. In “And what to filter?” the only option I have is “No WP Queries matched the post type “Cake” found on the page. It doesn’t give me the option to select anything different, even though my page-signature-cakes.php template includes a WP_Query.
I’ve also tried setting these things to various other options and never see the filter on my page after including the shortcode via echo do_shortcode(‘[fe_widget id=”678”]’) in the template.
Follow up: I realized that since I’ve set the listing of cake posts to display within a Page, that perhaps I would need to set the “Where to Filter” to be Pages and Cakes. So I did that. Now it works and I’m able to select the query. Sorry to bother you. Figures I work it out after mucking about for 30 minutes, submitting a support inquiry, and then mucking about for another 10 minutes. 
Hi 5iveLeaf
Thank you for choosing Filter Everything PRO.
We are glad to hear that the issue was resolved. You did a great job!
Best Regards,
- Victor
I’m using this plugin to create a filter on a taxonomy that I created with a custom post type using ACF. However, I can’t choose WP_QUERY in the settings, and when I test the filters, they display on my page but don’t work. I’m not sure if you understand my problem to help me. Is there a specific configuration I need to do? I’m using taxonomies to filter an ACF.
Hi raodatha
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also, please send the link to the page where are you trying to make the filter work, so we can start right away.
Best Regards,
- Victor
Hello, I am trying to have the same filtering set up as this: https://minimalistbaker.com/recipe-index/ I do not understand how to set up the taxonomies. Special Diet, Meal type, and cuisine are all categories, but I can’t have more than one category in filter everything. What taxonomy do I use? How do I set it up? Do I still mark these recipes in the categories as well? Any guidance is greatly appreciated. Thank you.
Hi optimisticallygreen
Thank you for choosing Filter Everything PRO.
If you are using woocommerce you can create separate attributes for each of those filters, and then create a filter by each of those attributes.
If you are using some type of CPT post. We’d recommend adding different custom taxonomies (so if you want 10 separate filters you need 10 custom taxonomies (in short taxonomy is like category, tags… those are two separate taxonomies)), in order to create your custom taxonomies, you can use this plugin – https://wordpress.org/plugins/custom-post-type-ui/
Or you can use custom fields, same approach, if you need 10 different filters, you need to create 10 different custom fields in order to create from them filters.
Best Regards,
- Victor
HI, on https://staging.kunstkabaal.nl/kies-je-kunstbox/ there is a filter for post categories. I need to exclude 1 category, posts that are in that category should not be in the results. How do I achieve this? Can’t get it right. Thanks.
Hi eigenwijsheid
If you want to exclude certain filter terms, you can go to the filter set, navigate to the needed filter, click “more options” and from there, use include/exclude functionality.
Please note, that the hierarchy views are very sensitive to those changes as they can break the hierarchy fully, so please proceed with caution.
Best Regards,
- Victor
Thanks, but the category has already been excluded.
These are alll the categories that need to be shown and filtered: https://prnt.sc/fZXU7_5CKTfQ
These categories do not need to be shown or filtered: https://prnt.sc/ftbqO3jFJo0q
But the first result on the page is a post in the category ‘Kunstbox Klantpagina’s’. That is the only category the post is assigned to, yet it is still shown in the results.
Does this mean the filter has been corrupted? If so, how can I fix it? Delete and make the same filter again?
Thank you.
Hi Victor, It is solved! I totally forgot to check the Divi blog settings. When I set ‘Posts for current page’to NO, then the included categories can be chosen. Si I chose all of them except ‘Kunstbox Klantpagina’s’ and now the filter results are perfect. Sorry to have bothered you! Regards, Elisabeth
Hi Elisabeth
We are glad to hear that the issue was resolved. You did an amazing job!
Best Regards,
- Victor
how can I make the pre-search filter option selector button (custom field – checkbox) display the actual label of the custom field from the PODs plugin? And not the label of the selector buttons named “0” and “1”?
Hi anomaliaenvato
Please check some of the hooks on the documentation page – https://filtereverything.pro/resources/hooks/ the “wpc_filter_post_meta_term_name” is what you need for changing names.
Generally, 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 are processed. It may take some time—days or weeks.
If you want to receive it faster, please extend the support period, and we will process the request with the priority for supported accounts.
Best Regards,
- Victor
Thank you very much for your help. I really appreciate it
Please where i can find the licence key ?
Hi raodatha
Thank you for choosing Filter Everything PRO.
Please follow the instructions on this page: https://filtereverything.pro/resources/license-key-issues/#how_to_get_the_license_key to get the license key.
Best Regards,
- Victor
Hello, the “Pop-up Filter widget” button appears throughout the site even though it is configured for products. Even if I don’t have a filter, the button appears.
THANKS
Hi Cristime
Please check this page with the troubleshooting – https://filtereverything.pro/resources/mobile-devices-new-approach/ you can find your issue under the “The mobile button is visible on all pages”
Please note that generally, 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 are processed. It may take some time—days or weeks.
If you want to receive it faster, please extend the support period, and we will process the request with the priority for supported accounts.
Best Regards,
- Victor
Good morning,
I just purchased your plugin (it’s wonderful), but I’m encountering some difficulties and need some help. I have a website with WordPress + Divi + WooCommerce + WPML, and the products have some custom fields created with ACF.
Your plugin filters by COLOR and MATERIAL (both are WooCommerce product attributes) and also filters by DISCOUNT, which is a custom field created with ACF. The “Chips” and sorting are also included, and the sorting works perfectly by ordering by the custom field in descending order.
You can see all of this working perfectly in Spanish (default language) at the following URL: https://pilma.com/desarrollo-pilma/categoria-producto/muebles/ (it’s a test site installed in the ”/desarrollo-pilma/” subdirectory).
The problem arises with the WPML translations to Catalan and English. Catalan: https://pilma.com/desarrollo-pilma/ca/categoria-producte/mobles/ English: https://pilma.com/desarrollo-pilma/en/product-category/furniture/
The issues I encounter are as follows:
- In both cases, the attribute filters work well, but the labels are not translated. I tried configuring it as you mentioned in the URL https://filtereverything.pro/resources/with-wpml-polylang/, but when I do that, the filters disappear in the other languages. I also tried translating it through strings, but I couldn’t manage it.
- The filter for the custom field “Discount” does nothing; it changes the URL but does not affect the listing or show the “chips.” However, the filter for ”% Discount” works perfectly…
Can you help me?
‘However, the filter by ‘% Discount’ works perfectly’ -> This is a mistake, I mean the sorting by “% Discount”.
Hi fmanez
Thank you for choosing Filter Everything PRO.
I tried configuring it as you mentioned in the URL https://filtereverything.pro/resources/with-wpml-polylang/ but when I do that, the filters disappear in the other languages.
Everything is correct, you need to create a separate new filter set for each language – https://prnt.sc/EoMEXYKo4D3t and place it on the needed page.
Best Regards,
- Victor
Thanks Victor, now the filters and translated titles are displayed in all languages so the first problem is solved but not the second one which still persists. I mean that the custom field filter does nothing.
Hi fmanez
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Hi Victor, I already sent the credentials. Incredible fast support.
We have checked the site, and it seems that the issue is in some custom code, that changes some values in the filter terms. We have tested it with the _price meta key dropdown, and everything is working as it should. But this custom field either you are trying to translate it somehow or any other manipulations, but there is a custom code that breaks it all.
Best Regards,
- Victor
Hi, I think the problem is because the subdirectory instalation, I tried in a subdomain staging site and it runs well… perhaps is a bug of the plugin?
Hi fmanez
The subdirectory WP installation can indeed cause issues, especially with the permalink and DB configurations. This is all strictly dependent on how it was created/configured and what type of custom solutions were applied.
Best Regards,
- Victor
Hi,
I am using FilterEverything Pro on a wordpress Avada site. It works fine, but I can´t figure out how I can prevent the page from refreshing and jumping to the top of the page every time a filter is clicked, super annoying! I tried to turn on Ajax in the filter settings and specify the name of the container, but with Ajax turned on the filter function does not load any results. Please help me solve this, it does not work to jump up to the top of the page every time you click on a filter.
Hi nyheim_grafisk
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
- Victor
Hello,
I have previously worked with your filter, but this time something is not right, and I can’t find a solution in the comments. Here’s the issue:
I created a page type “Videos” and would like to display an overview of our videos, which I want to filter using ACF custom fields. I have added initial videos and configured the filter.
However, my problem is: each value in the filters shows a count of 0, which is incorrect. As long as I leave “Empty Terms” set to “never hide” and disable “Hide empty filters,” the respective videos are displayed. But when I change these settings, they are no longer shown.
Is this perhaps a known issue for which you already have a solution, or can you help me with this? That would be great. It would be fantastic if you already know a solution or could assist me with this.
Of course, the filter should work perfectly and also display the correct count so that I can use the other options like “Empty Terms” and “Hide empty filters” properly.
At first, I suspected it might have something to do with languages or the new page type “Videos,” so I tried it with another page type “Applications.” Here I encountered the same issue. Additionally, in the backend under “And what to filter?”, several “Applications queries” are displayed. Is this normal, or is it a problem?
Could there be a conflict between the plugins? Among others, we are using:
• WooCommerce
• WPML
• ACF
• Folders
• wpDataTables
• Ajax Search Pro
Best regards Beni
Hi webadmin118
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?
Best Regards,
- Victor
I have just sent you the login credentials. Thank you very much in advance!
Hi Victor,
Have you received the login credentials? When do you think you’ll be able to look into the issue?
If you need any additional information or access details, please let me know so I can provide them as quickly as possible.
Thank you in advance for your help!
Best regards, Beni
Hi webadmin118
We have received the credentials, and we apologize for the delay in our response. We are still investigating the issue on your site and will provide an update as soon as we get to the roots of it. Thank you for your patience.
Best Regards,
- Victor
Update on this issue.
Seems like the issue is in the string translation if we turn it off everything works well and displays correct values.
So you do not need to install any testing environments, it seems the issue is how you used the string translation.
Best Regards,
- Victor
The issue here is that you can not use the string translation to translate the ACF fields, etc, to display them in the filter terms. You either need to create a different ACF field for each language, or all values in one field in different languages, and then in each filter set on the needed filter include/exclude functionality to remove the other language values, but we’d recommend using different custom fields for each language.
So if you configure a bit of string translation it won’t cause any issues.
Best Regards,
- Victor
Hi Victor,
Thank you so much for your efforts. When I disable the string translation, I can see that everything works correctly. I suspect that I may have created the new page type incorrectly in the secondary language.
If I find the error, I’ll let you know. Thanks again for your help!
Yes, it is quite complicated to track the exact issue on the already-created site. That’s why we recommend experimenting with it on the clean WP installation to try and recreate the same issue. Unfortunately, we could not recreate it on our end as we do not know the exact pattern.
But please let us know if you found what exactly caused it or how it can be recreated.
Best Regards,
- Victor
Hi Victor, I’ve spent hours trying to resolve this, but unfortunately without success. Could you configure this for me for a fee? …or should I reach out to WPML to ask exactly what needs to be done? Thanks for your help.
Best regards, Beni
Hi Beni
Can you set up a staging site for us so we can do absolutely what we need including deleting and editing posts, settings, plugins, etc?
If we have this full freedom then we can find the issue so much faster.
Best Regards,
- Victor
Hi Victor,
Thanks for your response!
In the meantime, I’ve been chatting with WPML support and set up a test environment. I’m currently waiting for feedback from their support team. They were able to replicate the issue on the sandbox site, and now the problem has been escalated to their second-tier support.
As soon as I get feedback, I will share it with you. I’d really appreciate it if we can solve this issue in the end.
Best regards, Beni
Hi Beni
Thank you very much for the update. Yes, please let us know the results.
Best Regards,
- Victor
Hi Victor,
I just wanted to let you know that we’ve resolved the issue and identified the cause. WPML support wrote:
“On your staging site, our 2nd tier support found that there could be corruption in the database when changing the default language from German to English, and that caused the issue. We fixed it by changing the product custom base to ‘s’ in Settings > Permalinks.”
Additionally, I had the “WooCommerce Multilingual & Multicurrency” plugin installed. To ensure the filters worked correctly, I had to change the “product base slug” since it was the same for both German and English, which was simply “s”. I changed the German translation to “sde”, and now the filters are functioning properly.
Of course, the values for the slugs are different in each case. However, in our case, the specific slugs for the URLs don’t play a significant role because I’m correcting the permalinks using the Permalink Manager.
Best regards, Beni
Hi Beni
Thank you for the update on this. We are glad to hear that the issue was resolved.
Best Regards,
- Victor
I’m working on replicating the product search functionality found on this page (https://test2.jhtechnologies.com/products) . I’ve set up a custom post type for products using the ACF plugin and have created a dedicated product search page (Type: page). Now, I’m in the process of configuring the filter set with the following values:
Post Type to filter – ‘Products’ Where to filter? Apply filtering if the page is: ‘Pages’ and selected my search page.
And what to filter? shows no WP Queries found. How should I resolve this?
Hi sagar2100
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 link to the page where you want to display your filters, so we can check it all right away.
Best Regards,
- Victor
Hello Victor,
We have sent the credentials.
Hi sagar2100
We have checked the site and added the [fe_widget] shortcode to your search template under the search field in order to display filters.
The issue with the search is that it is doing the search like this ”?s=a” instead of ”?s=a&post_type=products” The posts type should be there in the URL as well then everything is filtering correctly. If there is no post type then all posts are displayed there, and the query becomes not filterable.
Best Regards,
- Victor
Hello Victor,
Thanks for your help. We actually have separate page just for product search. It is different from the general search in the header. Here is the link to the page – https://jhtechnologies.com/product-search-page-2/. The post list on this page is only for products and the filter set is still not appearing on this page. I have updated the filter set to this page.
Can you please look?
Hi sagar2100
Done! Please check the page now. The issue is that you have two pages with the same name and you chose the wrong one in the filter set settings.
Best Regards,
- Victor
I have a problem with the filter installed on our homepage pruebas.medinautopartes.com. When I make queries, a grey bar appears, and I have to wait for the other data to load. How can I make it so that it doesn’t relate to and take so long? I need the filters not to activate until I have selected all the fields because it takes too long to read every time it filters.
Hi fidelizaplataformas
Thank you for choosing Filter Everything PRO.
Can you please send the link to the page with the issue so we can check it?
Best Regards,
- Victor
Of course, https://medinaautopartes.com/ We have 3 filters in this section, the first one on homepage; second one on this section https://medinaautopartes.com/sucursales/ and the last one is on the section store like this https://medinaautopartes.com/categoria-producto/defensas-fascias/
i will wait for your answer.
So you are referring to the fact that when you choose any filter terms, it is grayed out to update all of the other terms’ status. Unfortunately, there is no possibility to turn it off. However, the development team has plans to make such a filter option as well, without updating the statuses.
Usually, it takes milliseconds, but the issue on your site is the server response time is 7-9 seconds – https://prnt.sc/NWE55N8ChuSF
It is either the limitations of the hosting you are using or bad server hardware. Also, can be overusing of page builder features making the site extremely “heavy”. If the response is so slow you need to check your server.
Best Regards,
- Victor
Hi,
I am experiencing an issue with the Filter Pro plugin. I am unable to create any filters, and I keep encountering the following error: “An error occurred. The filter set fields were not saved, please try again.”
I’ve tried several attempts, but the issue persists, and I cannot proceed further.
Hi wreskidesign
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?
Best Regards,
- Victor
Please help. I have set [fe_widget] on the search results page and only on this page after selecting the filter button it is not highlighted (marked) as a selected filter (it is still shown as another unselected button) but the search page correctly shows the filtered elements (and the url correctly adds an element narrowing the result). Why is the selected filter button not marked on the search page? Other filters set on other pages correctly mark the button if it is highlighted in a different color, only the problem is on the WP search page. Why?
only adding this code helped:
.wpc-filter-label-wrapper:hover { background-color: blue !important; } .wpc-label-input:checked ~ label .wpc-filter-label-wrapper { background-color: blue !important; }.
but is this the right solution?
Hi anomaliaenvato
The styles are inherited from the theme and page templates. So more likely the search page template has a different style for it, and the elements are inherited from them, that’s why they look different and behave in a different way. Yeah, there are no wrong solutions with the CSS, if it helps it to look good, then it is more than fine.
If you have any other questions, please note that generally, 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 are processed. It may take some time—days or weeks.
If you want to receive it faster, please extend the support period, and we will process the request with the priority for supported accounts.
Best Regards,
- Victor