8955 comments found.
Hi!
I want to add a filter on a custom product page. This page is a combination of woo product bundle plugin and woo composite product plugin, so as to have a mix and match result. So actually it is a product page which consists of products.
I am adding [fe_widget horizontal=”yes” columns=”5”] to this product page and applying the filter on this page via Where to filter? settings. I am testing all the available product quarries, i have also added widgets etc, but nothing appears on the product page.
I am using flatsome and the Intended use is on page: https://itsababybox.gr/product/design-your-gift/Hi anrinejewels
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
Hi Viktor! Already sent the credentials.
We have checked the site, and the issue lies in how the products are being displayed on that page. It appears the products are being loaded via an API or a similar method. As a result, there is a “loading…” process before the products become visible.
We’ve set up a testing page and placed the filter set you created on it. On our testing page, where products are pulled using the default WP_Query, the filter is working correctly.
You can check the testing page to compare the behavior. What we recommend is reaching out to the support team of the theme or the UX builder you’re using (we’re not sure if they are separate or together) to ask whether it’s possible to display products on the page using the default WP_Query, as we’ve done on our test page.
The code for the WP_Query implementation is placed inside the Code Snippets plugin, so you can review it there for reference and further examination.
Best Regards,
Victor
Hi Viktor, I contacted woo plugin support in regards to this. Here is their reply:
The options you see for each component are fetched using a WP_Query, not an external API as suggested by the Filter Everything Pro plugin. This is handled within the WC_Product_Composite_Data_Store_CPT::query_component_options method, which extends WooCommerce’s core WC_Product_Data_Store_CPT class.
Third-party plugins, including Filter Everything Pro, can use the woocommerce_composite_component_options_query_args filter to modify which products appear in each component.
Here’s a helpful snippet showing how this filter can be used to hide out-of-stock items: https://woocommerce.com/document/composite-products/composite-products-snippets/#hide-out-of-stock.
As for the “Loading…” message you mentioned, this appears because both components and their options are rendered dynamically via JavaScript.
Since the goal is to implement live filtering of component options, any filtering logic will also need to happen in JavaScript. Composite Products plugin already includes built-in option filtering features! I’d recommend checking out the Options Filtering section of the documentation here: https://woocommerce.com/document/composite-products/composite-products-configuration/#advanced-settings.
Does this help or enlightens our query? Is there a way you can assist?
Hi anrinejewels
The plugin uses the default WordPress WP_Query to filter any CPT (posts/products/events…) on the site. By default, WooCommerce also uses WP_Query for shop, archive, and other product pages, specifically for compatibility with WordPress themes and plugins. It is not using the WC_Product_Data_Store_CPT on those pages.
Using WC_Product_Data_Store_CPT instead of WP_Query can lead to compatibility issues. The WC_Product_Data_Store_CPT is a WooCommerce-specific class optimized for product data retrieval, it does not fully support the query customizations required for workability. The WP_Query provides extensive options and hooks that are essential for dynamic filtering.
We can only recommend adding an option in the page builder/theme to choose whether products are displayed using WC_Product_Data_Store_CPT or WP_Query on the page. This will provide compatibility with other plugins that rely on the default WP_Query behavior, rather than being forced into a single, potentially incompatible approach.
While this can be added in future updates, in order to work with the WC_Product_Data_Store_CPT, this will require changing the core of the filtering and how the filters are working in general. It is not just using a hook and this will make it 100% compatible with the filtering features. There should be a new mechanism to detect if the pages use the WP_Query or the WC_Product_Data_Store_CPT and how many of them on the page are used and work with the exact one and make sure it is all saved as well, not just a hard-coded solution.
Best Regards,
Victor
Hi I don’t seem to be able to get this work. How can I request a refund please?
Hi anrinejewels
We’re sorry to hear that. We’ve provided a working example with the WP_Query on the test page.
The third-party theme/page builder should provide a WP_Query solution to display products in the same way WooCommerce does by default for its archive pages. It works well with the default WP themes and other premium themes and page builders, as they all provide a WP_Query solution for displaying the products/posts. If the theme is limited to only one solution and does not provide any default WP_Query to display products, it can lead to incompatibility with many features and plugins.
In general, a refund is possible by submitting a form through the account where the plugin was purchased and waiting for a response. Please note that the support team does not handle refunds. Furthermore, we have no control over the refund team and cannot speed up the process or influence it in any way.
Best Regards,
Victor
I’m trying to find a plugin to enhance my site search capabilities, are there any plugins that integrate with Filter Everything or are there any you can recommend?
Hi adama212
There are currently no recommendations, however, you can use the default WP search widget, with a slight extension. This will work 100% if everything is implemented correctly. Or you can write what plugin you are looking for, so we can test it together with our plugin.
Best Regards,
Victor
Can you help me figure out why it does not work? Can also give you website access.
Hi BonzoRen
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
Hello,
I am using Filter Everything with the Bricks builder theme.
Could you please advise me how to solve my issue. My problem is that when I filter products using filter everything pro, the images do not appear on my grid ( They only appear on the initial load of the page ). ( AJAX is enabled)
The Bricks Builder team advised to use this bricksLazyLoad(); function with a JS Event from your plugin, but I am not sure what exactly I have to use.
Please advise, thank you in advance.
You can test the problem here, by filtering: https://stagingas.layers.lt/parduotuve/
Hi kasparasbalys
Thank you for choosing Filter Everything PRO.
You can use this JS “Wrapper” code, and place that code in there:
jQuery(document).on('ready', function(e){
/* Plugin function to re-init, e.g. jQuery("[data-fancybox]").fancybox(); */
});
Best Regards,
Victor
Hi Victor,
Following up on our previous conversation:
The suggestion to use jQuery(document).on(‘ready’, ...) with bricksLazyLoad(); has not resolved the issue.
After applying a filter with Filter Everything Pro (AJAX enabled):
On both desktop and mobile, the product images either do not appear at all in the updated product list, or sometimes an incorrect image loads.
This happens consistently after the AJAX filter refreshes the product grid.
The Bricks Builder team advised that I need to call the bricksLazyLoad(); function. However, for this to work correctly with your AJAX filtering, it needs to be triggered specifically after Filter Everything Pro completes its AJAX request and inserts the new product HTML into the page.
Could you please provide the exact JavaScript event name that Filter Everything Pro triggers after a successful AJAX filter operation and DOM update?
Without this specific event from your plugin, I cannot reliably re-initialize Bricks Builder’s JavaScript (like bricksLazyLoad()) for the newly loaded content.
This is critical for the images to display correctly after filtering.
Thank you.
That wrapper fires the code inside after the AJAX is finished on the page, so it should work nicely without any issues, as it was tested many times. (This is the only option at the moment) And it is looking like it fixed the issue as the posts appear with images now.
However, what can still be causing issues is the pagination in the form of a load more/infinite scrolling, which is using its own AJAX requests without any parameters in the URL to track its state. Try to add a default numerical pagination for testing purposes, to see if everything is working correctly.
Best Regards,
Victor
Here is a video of the functionality I am getting after applying the code:
The video: https://streamable.com/gd8gvc
The code: <script> jQuery(document).on(‘ready’, function(e){ bricksLazyLoad(); }); </script>
Added the code to Bricks Builder Settings > Custom Code >Body (footer) scripts.
Additionally I :
1. Temporarily disabled litespeed cache. 2. Added default numerical pagination to the page, instead of the infinite scrolling one.
Also clarifying that in the video although the images appear at first you can see that those are not the correct images ( i refresh the page and they change.) and when I apply more filters they appear without images at all.
It looks like the issue is with how the images are being applied using JavaScript, as they are simply set as background images through inline CSS.
The problem seems to lie in how the current code is functioning, you may need to make some additional changes for it to work properly. When the page loads, there are preloaded styles responsible for displaying each product image:
<style id='bricks-dynamic-data-inline-css'>
.brxe-ifpmfv .brxe-ellvjx.brxe-div[data-query-loop-index="0"] {
background-image: url(https://stagingas.layers.lt/wp-content/uploads/2025/03/61cdabdf7b5477630d25c021_dalton-hyaluronic-urea-hydro-boots-cream-50ml_800.webp)
}
.brxe-ifpmfv .brxe-ellvjx.brxe-div[data-query-loop-index="0"] {
background-color: var(--bricks-color-tybvrs)
}
.brxe-ifpmfv .brxe-ellvjx.brxe-div[data-query-loop-index="1"] {
background-image: url(https://stagingas.layers.lt/wp-content/uploads/2024/07/Inspiration-1.png)
}
.brxe-ifpmfv .brxe-ellvjx.brxe-div[data-query-loop-index="1"] {
background-color: var(--bricks-color-tybvrs)
}
...
</style>
When you choose the filter term and it is loading new products, those styles are still there – https://prnt.sc/s3A_lleFhQbD basically pulling this data to add the image on your products. When we refresh the page, those styles are changing – https://prnt.sc/KFfFYRrw9Nju with the correct URL to the image, so you might want to check that aspect and how it can be altered after the AJAX is finished, as it’s likely that the lazy loading function do not update that data. It should be some other function.
Best Regards,
Victor
Thank you Victor!
Indeed the final puzzle piece was the image being rendered as a background with css.
As soon as I changed the element to be a standard image element the filtering started working like a charm.
Thank you for the support and have a nice day!
Thank you!
We’re glad to hear the issue has been resolved.
Have an amazing day!
Best Regards,
Victor
How can the product count be updated on filtering instead of just on page refresh?
Please check this: https://app.screencast.com/89hG04JlXauvY
Hi pstidsen
The link is not working, however, perhaps you are referring to the AJAX functionality – https://filtereverything.pro/resources/ajax-instructions-only/
Best Regards,
Victor
Hi Victor, I works fine for me. However, your link did help me. I have changed the container to #wrapper because that’s the first parent that contains both the posts and the product count element. However, that destroys the theme’s stick header. HTML structure: https://app.screencast.com/f0QJAizDBLDCo
Please send the link ot the page with the issue so that we can check it.
Best Regards,
Victor
Can I send it privately?
Yes, you can send it via PM – https://codecanyon.net/user/fe_support
Best Regards,
Victor
Sent 
Hi pstidsen
It seems like it is already updated with AJAX. You need to place it in the container that is specified in the AJAX settings.
The custom button and its functionality after an AJAX call may be affected because the JavaScript code for it is not AJAX-compatible by default. For more information, please check this page: https://filtereverything.pro/resources/ajax-instructions-only/#ajax_related_problems
Best Regards,
Victor
Hi Victor
What custom bottom are you referring to?
Is it possible to specify a container for the products and a seperate container for the result count. I think that will work better in this theme setup.
Best Regards, Peter
We were mentioning this button – https://prnt.sc/dwijcDG3Vty2
It is not from the plugin, and its functionality can be affected if it is updated via AJAX as well.
Yes, technically you can add the required classes like this:
.container-1, .container-2
Best Regards,
Victor
Thanks for mentioning that. I will test that button further.
I have tried to add two containers like this: .products.row, .woocommerce-result-count
However, that doesn’t work at all.
/ Peter
In that case, you can try editing the page template to ensure that all content that should be updated is placed within a single container. It’s recommended to use a unique container class name, rather than using common or repetitive classes like the ones you mentioned, which appear multiple times across the page.
Best Regards,
Victor
Hi again, I am afraid that won’t be a soultion either. I have tried this one: .products, .woocommerce-result-count both of the classes only appear once each on the category page.
In that case you can try to use the #wrapper to update the whole page.
Best Regards,
Victor
Also, one more option, try to apply the same unique class on both containers, like “fe-ajax-filter-container”, and then use it for AJAX settings.
Best Regards,
Victor
Hi Victor,
1. Using #wrapper reloads the entire page leading to a lot of JavaScript issue afterwards. Furthermore, way too much data is transferred which should be a bit slower.
2. I have tried using the very unique class fe-ajax-filter-container but that is just putting the content from the first container into the second container on AJAX reload.
Hi pstidsen
Yes, we’ve tested it, and indeed, it’s not possible to make it work that way. Currently, the only option is to place the products and the counter within a single container, rather than in two separate ones.
Something like this:
<wrapper-products-with-pagination-and-counter>
<counter/>
<products/>
<pagination/>
</wrapper-products-with-pagination-and-counter>
Best Regards,
Victor
Hi Victor,
I have now created a shop_wrapper and now the results next to the FILTRÉR button does work.
However, the FILRÉR button doesn’t work any longer as you predicted. I looked up the source code, and it looks like the ready statement is present: https://app.screencast.com/FPBD9DL9Te77O How to solve that AJAX problem?
Another thought: Does your plugin contain a desktop version of the mobile popup? If so, I could use that instead..
There is some JS code that opens the sidebar with a filter on the click of that button. After AJAX returns updated elements, the JS code simply does not apply all of the required events to this button (it only applies them during DOM load). What you can do is find this code and use this wrapper:
jQuery(document).on('ready', function(e){
/* Plugin function to re-init, e.g. jQuery("[data-fancybox]").fancybox(); */
});
After the AJAX is finished on the page, it will fire the code in that “wrapper” to renetiate this button JS code in order to make it work normally.
As to the desktop button, yes, it does, you can check it on this page – https://filtereverything.pro/resources/mobile-devices-new-approach/
There is a code that allows you to modify the breakpoint for the mobile button, making the mobile widget appear on the desktop.
Best Regards,
Victor
Thanks, I have created this snippet that: 1. Re-initiate the functionality of the filter button from Flatsome 2. Update my custom result count in the sticky header (copying the text from the default lcoation to the custom location).
jQuery(document).on('ready', function(e){
const resultCountEl = document.querySelector('.category-page-title .woocommerce-result-count');
const replaceTarget = document.querySelector('.header-nav-main.nav-left .woocommerce-result-count');
if (replaceTarget.innerHTML != resultCountEl.innerHTML){
replaceTarget.innerHTML = resultCountEl.innerHTML;
}
//Re-initiate "Filtrér"-button functionality
Flatsome.attach(document);
});
Nicely done. Great job!
Best Regards,
Victor
Hi Filter Everything team,
We are trying to set up Filter Everything PRO and translate it into Serbian language, but the translated strings from the .po file are not reflected on the page, all of them are still displayed in English. We are using LocoTranslate plugin for translations and we are wondering if you could help us resolve the issue since the majority of our customers are in the local market (Serbia).
Please let us know what information you need from our end in order for you to take a look at the translation issue.
Hi dalux23
Thank you for choosing Filter Everything PRO.
Could you please provide specific information about what you’re trying to translate? If possible, share a link to the image showing what you are trying to translate. So we can quickly identify and provide you with the required information.
Best Regards,
Victor
It’s mostly strings “Reset All”, “Filters”, “Show”, “Cancel”
Here is the setup that we have for those strings in LocoTranslate https://ibb.co/gbRN0jDmHmm, that’s weird. Perhaps you should check the site language configured in Settings > General > Site Language in your WordPress admin panel. If it’s currently set to English, you’ll need to switch to Serbian for it to work correctly.
Best Regards,
Victor
Hi there, I want to show products from multiple categories in the same URL, and I guess I could use your plugin for that using the filter URL’s. However, I do not want a general category filter in the sidebar. Is that possible?
Hi pstidsen
Thank you for choosing Filter Everything PRO.
A bit confusing, you want to filter posts on the page by certain category? But do not want to display filters on that page?
Best Regards,
Victor
Hi Victor, You are right. Maybe that’s a bit odd. It’s because our categories is pretty small so the customer has no need to filter categories further into sub/other categories. However, for the menu, we sometimes want to link to a page with products from multiple (similar) categories. Can we do that?
Hmm, perhaps you should use the default Woo Product Category widget for this case. It allows you to navigate to your category pages.
You can also create a single Shop page that displays all your products. This allows users to filter and browse everything in one place, rather than navigating through multiple pages limited to specific categories, making it much easier for them to find what they’re looking for.
Best Regards,
Victor
Ah, yes, I will create a page with all products and a category filter for that particular page. I guess that will give me the URL to products in multiple categories.
Yes, this way you can choose multiple categories in the filter and use that URL to direct users on the page with already chosen filters. Or just live filter everything on that page, which will be more efficient.
Best Regards,
Victor
Hi,
I’m struggling to get the filter to work properly with Elementor Loop Grids.
I have two ACF datasets at the moment.
I have installed the filter on https://www.historicvictoriapark.au/victoria-park-historic-timeline/ and it works as expected, but I’m unable to determine the Page ID to get Ajax to work.
The sorting widget is an entirely different headache…...
Another ACF dataset is on https://www.historicvictoriapark.au/honouring-service/.
Once I created a filter for the page in the PRO version, it created #6 datasets for the page. I have 6 loop grids on the page for each of the Service Categories in ACF.
I assumed this was because each one was it’s own WP search.
Creating a single filter for the page only filtered the first “Loop Grid” so I assumed this was the first data set. I made this priority 6 and set it to the first Loop Grid on the page. Works BRILLIANTLY!
So I go to the next loop gird and assign insert a widget and assign it priority 5 (as per the documentation) and create a filter for the second loop grid using data set #2.
Works as expected, but now the first filter set is the same as the second filter set. 
Not Happy!
Can you please let me know what I am doing wrong?
Also a couple of other points: - In Elementor the background of the Sorting Widget settings is in dark mode so you can’t read the text to see what the settings are without expanding them. I’m still trying to get the sorting to work in a reasonable way with ACF fields and categories! - The duplicate function in the filter widget doesn’t work. It creates a new Filter in draft mode with the same title (-draft) but none of the internal settings/filters are copied over from the previous. As per what I am attempting above, I have 6 almost identical filters for the Honouring Service Page that It would be better to not have to recreate from scratch for each one. PS: I would like to have just one filter for the https://www.historicvictoriapark.au/honouring-service/ page if possible!
Thanks
eSpecially Yours
Hi thes43
Thank you for choosing Filter Everything PRO.
1) Please check this page on the AJAX configurations – https://filtereverything.pro/resources/ajax-instructions-only/ – it provides illustrated and numbered step-by-step instructions on how to find the correct Class/ID of the element that displays your posts. Also, since you are using a page builder, you can manually apply a Class/ID to the required container.
2) The issue is that you’re using six different queries to display posts on your page. You should use only one WP_Query to display all your posts, so they can be filtered with a single filter set. The filter set only works with one query. It does not have the ability to collect all the queries on the page, merge them into a single query for filtering, and then split them back into separate queries to display specific posts accordingly.
To summarize:
Use only one Grid Loop to display all your posts, and apply the filter to that single loop in order to filter and find the required posts effectively.
Best Regards,
Victor
Hi I have a filter result issue that I just can’t resolve. I’m using Kadence Pro. I have a product that is separated in to categories. the categories have attributes including brand, room, designer, category, type, and collection. I have both “simple” products and “variable” products (where the product may come in multiple variations – usually by color). it looks like maybe Filter Everything Pro works at the parent level only, but doesn’t work correctly at the attribute level. If I search for a certain collection I get a valid result, but when i try to narrow by the color variation it seems to turn in to more of an OR search rather than an AND search. Is this expected behavior, and is there anything i can do to overcome it? I would need to be able to have the search criteria either exist at just the parent level or just the variation level (because something like color wouldn’t make sense except at the variation level for variable products).
Hi calogie
Thank you for choosing Filter Everything PRO.
If you have any attributes that you are using for your variable products, you can go to the Filter Set > Navigate to the filter that is used for variables (color, size, etc.) > Click “More Options” > and from there, choose the option “Use for Variations” > then hit the Update button in the filter set.
Best Regards,
Victor
I’m struggling to get the filter to display correctly on mobile. It’s working great on desktop, but on mobile, it is showing the filter selector twice, once on the top center of the page, and then on the left right above the products. If you navigate to https://www.winespectrum.com/wine-type/red/ on a mobile device, you will see what I’m talking about. The one on the top also doesn’t display the filters, well I actually think they are in there, but not visible unless you scroll down, and on mobile this doesn’t work. I honestly don’t care which of the two buttons are visible, but it’s confusing to have both, and one of them doesn’t function well. What do you suggest?
Hi LunabeanMedia
This button at the top of the page – https://prnt.sc/SCwO7wcWCQvZ – is not from our plugin. It is either from the theme itself or from a page builder. You can contact the support of the theme/page builder so they can help you with a solution on how to remove it. The button from our plugin is located below.
Best Regards,
Victor
I see a button at the bottom of the filter section that says “Edit Filter Set” with a link back into my wordpress dashboard. Can I remove that button/link? I am currently only using a temporary url as I build out my site.
Hi adama212
Thank you for choosing Filter Everything PRO.
This link is only visible when you are logged in as an Admin; it is not displayed for any other users, so you do not need to worry about it at all. It is for quick access to the filter set placed on the page.
Best Regards,
Victor
Using, Astra pro, elementor pro, in mobile view, have setting to “Collapse the widget and show filter opening button”. This button appears on top of screen, and is sticky. it has a transparent background, and works well, but making it difficult to see/read as it blends with the products in the background. How can I change the transparent back ground to a color ?
Hi clouw316
Please send the link to the page with the issue so that we can check it.
Best Regards,
Victor
Can you please send the credentials to the wp-admin dashboard following this document so we can check it and try to fix it.
Best Regards,
Victor
Hi, Thanks, link and info sent…. good luck, hope you can get the “clash” sorted
Hi clouw316
We have added a small CSS fix example (Filters > Settings > Experimental > Custom CSS), so you can check it in case you face any other issues like that based on your theme styles:
.wpc-filters-overlay {
z-index: 10;
}
@media screen and (max-width: 768px) {
.wpc-overlay-visible .ast-header-break-point .ast-shop-toolbar-container {
z-index: 9;
}
body.woocommerce #ast-scroll-top {
z-index: 9;
}
}
Best Regards,
Victor
Thank you very much for your fast response and resolving the issue. Very impressed.
I am trying to filter a set of posts under one Category and hopefully the filter will display only those subcategories under the category. I have everything installed and setup, however the filter displays ALL categories. Probably an easy fix, but I can’t seem to find the answer anywhere.
Hi cechrist
Thank you for choosing Filter Everything PRO.
Can you please provide more information on this: “the filter will display only those subcategories under the category.”
We are a bit confused about what exactly you mean by that. If you are referring to this type of view – https://prnt.sc/w2vX9K1jIP99 – then it is only working for checkboxes. You can turn it on from the Filter Set > Navigate to the required taxonomy filter > “More Options” > and there will be an option to turn on the hierarchy view.
Best Regards,
Victor
We switched hosting and I believe that’s what is causing the purchase code to be “invalid” when trying to activate it.
Envato support said we could reach out to you to reset the license key.
It’s only been used for 1 project.
NEVERMIND! I figured it out. Should have read the other comments first. My apologies!
Hi homesteadliving
We are glad to hear that your issue was resolved.
Best Regards,
Victor
Hi, what could be the reason that when I select filtering, e.g. Direction (Kierunek) Denmark (Dania), it displays the results correctly but the expanded list does not collapse automatically
Hi silverfoxpl
Please send the link to the page with the issue and instructions on how we can recreate this issue on the page.
Best Regards,
Victor
That is correct behavior, what you can do to fit it to your exact logic, you can modify the JS code a bit so it will remove the class opened from all of the filters.
Best Regards,
Victor
where can i find the js code responsible for this
Perhaps in the code snippet plugin or in the theme’s functions.php file.
Best Regards,
Victor
Hello, I’ve just purchased a licence for our staging site, which is regularly cloned from the live website. The plugin on the live site is licensed via the web developer who designed & built it.
I’ve pasted the Item Purchase Code into the License Key field in settings, but it is not being recognised, and the plugin remains Locked.
I don’t want to delete the plugin and upload the new one because (I assume) we would lose all the settings. Also, that would mean we would have to do that every time we clone live to staging.
How do I get the plugin to recognise the Item Purchase Code I’ve just bought?
Thanks
Rod Graham
Hi Rod Graham
Thank you for choosing Filter Everything PRO.
It is important to keep in mind that the License key and CodeCanyon purchase code are two different things.
Please use incognito mode in your browser!!!
In order to set the License key for the Filter Everything PRO plugin, simply head to Filters -> Settings -> License and click the “Get your License Key” button.
It will take you to a new page where you have to log in with your Envato credentials (with an account where you have purchased the plugin) and obtain your License key.
Best Regards,
Victor
Sorted. Thank you!
I would like to add an seo rule to a ‘custom field’ (it is actually numeric but I have set it to be a normal custom field so I get a sensible url). example: domain.com/make/bmw/year-2025/
I cannot see how to add the year to the indexing. It shows as a ‘Custom Field Prefix’ in the URL Prefixes section, but nothing is showing under ‘indexed filters’ for ‘year’. Is there any way of adding this so the noindex etc. gets removed and I can add the seo text?
Hi MediaPagesLtd
Go to the Filters > Settings > Indexed Filters > and make sure the checkbox is “checked” next to the required filter from your custom field > and hit the save button.
Then go to the Filters > SEO Rules and create a SEO Rule using the filter from that custom field.
Best Regards,
Victor
That is my point – although the filter is set up (filter by: custom field, Meta Key= ca-year, Prefix for URL = year-registered) it appears in the URL prefixes tab, but NOT in the indexed filters tabs. This just has the taxonomies that I have used in other filters. Remember, this is not a taxonomy I am using but the CPT post meta. If it does not show in the indexed filters tab, I cannot make an SEO rule for it (I have set lots of these up so far with taxonomies so understand how to do one – I have also written a plugin to create a site map for the ones I have written). I assume it does not work either because it is a meta, not taxonomy or the meta data custom fields are not set up correctly on my theme?
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Best Regards,
Victor
Done
Go through all of your filter sets and delete all filters created from a custom field “ca-year” (when you delete it > hit the update button). When you delete them all, check one more time in all filter sets that you have if there is 100% no filter created from the “ca-year” meta key. Then, go to the filter set placed on the page that you sent us and create a filter from this custom field. We noticed that you have at least two filters (in different filter sets) from the same meta key with different prefixes, which is causing this issue.
After you create the filter from the “ca-year,” go to the Filters > Settings > Indexed filters and check if it appears there.
Best Regards,
Victor
I would still like to have the year from/to filter on my main search filter (called all Listings Filter). I would like to have the new filter set to filter on the make and body taxonomies so I can have /bmw/year-registered-2024/ as an indexed landing page. How can I achieve this?
In that case, you need two separate custom fields, one will be used for the indexing and the other one can be used for the range slider.
Best Regards,
Victor
Hi
I create a seo rule on specifc filter -> https://dev.cavetown.nl/product-categorie/industriele-kasten/merken-eleonora/materialen9123-acaciahout/
I filled in the H1, meta description and title, but I dont see the content. What am I missing?
An
Hi An
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also, we can make an SEO Rule example so you can check it.
Best Regards,
Victor
Hi, I sent the credentials!
Basically, everything is working, just you have to turn off this option – https://prnt.sc/nXUg8tkGZd0f
And also, please check this option – https://prnt.sc/Na5uDppqehyJ in case you need to set the indexing depth.
As to the H1 not changing on the page, please check this page – https://filtereverything.pro/resources/all-about-seo/#seo_h1_description_issue
So you might want to contact your theme support and ask what hook you can use in order to change the H1 on those pages. Then add the code with that hook on your site, using a code snippet plugin.
Best Regards,
Victor
Hi Victor, I see yes. What I still see is the orginal content of the product category. This way you have like 2 seo texts. 1 of the seo rule and one of the general product category. That one should actually be gone when there is a seo rule text displayed. How can we solve this.
The instruction on the same page – https://prnt.sc/J5D_QhDXOmys just you have to use the hook of your theme that is responsible for that description in order to remove it and place the SEO Description you configured.
Best Regards,
Victor
Ok I understand. Doesnt this effect the SEO indexing technical aspect of everything?
Not at all, basically it is just replacing the SEO Description on the pages that have SEO Rules on them. It does not remove anything before you are filtering the page, or with the filter combinations that are not indexed with the SEO Rules.
Best Regards,
Victor
Hello, I have a specific question.
We have 25 thousand simple products, without variations.
We will need almost 50 filter groups, each with 4 options.
Example:
Voltage (110v, 220v)
Colors (yellow, blue, green, gray, red)
I am calling each filter title a group.
They will be created in ACF so that we can mark these characteristics in the product registration to be filtered with the list on the website.
Does the plugin work well with this amount of filters using ACF?
No problem, or would there be another way?
Hi samucavirtualite
In general, the plugin can handle as many filters as you need. The only limitation is your server hardware, whether it can handle the load and provide fast calculations.
Best Regards,
Victor
Function suggestion: Add user selection options for indexing and following. At present, the default index is nofollow, noindex. However, this will prevent Google from crawling old content. So I think the best way is to follow, noidex. What do you think? How to set it up?
Hi melody7
Thank you for your interest in the Filter Everything plugin.
You have to create SEO Rules in order to make some pages indexable, or you can use custom code with the WP robot tags hook to make them all indexable by default.
Best Regards,
Victor