8970 comments found.
i cant seem to get the indexing with the seo rules to work. indexing on the webpage is allowed under settings -> reading. indexing depth is set to 8. other seo plugins are turned.
its obviously something simple i’ve overlooked, but i’m at a complete loss what to do next to get it to work.
Hi Cign
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?
And the link to the page where the SEO Rules should be working.
Best Regards,
Victor
send you the login info through pm
Hi Cign
You need to fix your server/site settings. Every AJAX request, even updating the profile to change the language and hitting the apply button is returning 502 errors, like in this screenshot: https://prnt.sc/fdlDDKXGLSoC
Best Regards,
Victor
should be ok now
Query parameters or directory filtering?
Some filters result in query parameters, while others change the URL path using slugs. What’s the reason for handling filters in these two different ways? Can I control which method is used, or is it determined automatically by some system you’re using?
Example: https://domain.dk/varer/lights/color-blue/material-plastic/?max_height=51URLs like /color-red-or-blue/size-xxl/ are natural text-based filters, which can be used for SEO rules. On the other hand, filters with parameters like ?something=20 are numerical filters and are not used for SEO rules, as they can generate millions of possible variations.
Best Regards,
Victor
I have created a very simple SEO rule: https://app.screencast.com/pU3fpP0MJFV13 (farve = color), but no text is changed at all at https://domain.dk/varer/lys/farve-raahvid/
Do I need something else?
Best Regards, Peter
Hi Peter
1) Go to Filters > Settings > Indexing Depth and set the maximum number of filters to be indexed for the needed post type.
2) Make sure you turned off from the Settings > Reading > ”Search engine visibility” option to make SEO Rules work.
Also, can you please send the actual page with this SEO Rule so we can check it?
Best Regards,
Victor
Hi there,
Option 2 worked perfectly! It was turned on because it is a staging site.
Any chance the SEO rules could work even though the setting is turned off? Could be nice for the staging purpose.
/ Peter
Not really, there is this function: isNoindex() in the pro/SeoFrontend.php file. You can modify it in the staging site to make it work without this option.
Here is a part of the function:
public function isNoindex()
{
global $wp_query;
$noindex = true;
if ( '0' == get_option( 'blog_public' ) ) {
return $noindex;
}
...
Best Regards,
Victor
Hi,
It worked. But now the pop-up is at the bottom of the archive pages on iPad and Mobile. https://nrgel.se/produkter/laddkablar/ Even though I have activated the option to force the sidebar to the top on mobile. Still it does not effect it. What now?
I do not see any option in the comment section to replay directly to your messages. I googled it and found nothing about being able to reply to comments. And I do not find anything on Codecanyon about this either.
Kind Zayn
It looks like you have already fixed it – https://prnt.sc/R2qpn5UlftEN as it is not at the bottom of the page anymore. However, how to fix this type of issue is also described on the same page.
As to the “I do not see any option in the comment section to replay directly to your messages.”
You can use this form to contact Envato support – https://help.author.envato.com/hc/en-us/requests/new And ask them how you can do it.
Best Regards,
Victor
I found it in the end. Both the reply section and the solution to show the pop-up at the top. Thank you for the support!
You did a great job!
Best Regards,
Victor
Hi,
The pop-up widget is showing on the home page in Mobile view. Very weird thing here. What do I miss here? https://nrgel.se/
Kind Zayn
Hi Zayn
If you scroll a bit further down on the page we sent in the previous response, you’ll find an example of such a case and how it can be fixed – https://prnt.sc/eSN8YYGZRbQ3
https://filtereverything.pro/resources/mobile-devices-new-approach/Best Regards,
Victor
Hi,
The filter does not goes to pop-up mode in iPad. Only on phone screen. And in iPad it is still in the desktop mode. How can we tell it to be Pop-up Filters Widget for iPad too?
Kindly Zayn
Hi Zayn
Please check this page – https://filtereverything.pro/resources/mobile-devices-new-approach/ there will be a code that can change the breakpoint of a mobile button.
Best Regards,
Victor
Hi,
How do I replay when I get a message from you?
The page did not show to you because our store was hidden from outside visitors. But please check this now: https://nrgel.se/produkter/laddboxar/tillverkare-amina-or-charge-amps-or-ctek-or-garo-or-zaptec/
Kindly Zayn
Hi Zayn
Go to the Filters > Settings > General > and remove not required hooks from here – https://prnt.sc/662vk3WBNGAK and hit the save button.
As to the response in the same comment threads, would be better to ask CodeCanyon support, so they can provide some information on this.
Best Regards,
Victor
access credentials sent
Hi informaticamediaadgo
Done! The issue is that you used the same slugs for filter prefixes as already created for other pages on your site. This is causing the conflict, they should be unique.
Best Regards,
Victor
Hello Victor,
Yes, but we need clean URLs without fe_ tags.
Our SEO manager doesn’t want this because he says it’s not good.
Isn’t there a way to exclude sitemaps from the plugin’s writing rules with a hook or filter?
The titles don’t look good either, and they’re defined for taxonomies.
This is not an issue with sitemaps, as the plugin does not currently include sitemap functionality, it is still in development.
The issue you’re facing is that WordPress gets confused when the same slug (e.g., localization) is used for different purposes, such as an attribute, taxonomy, or filter query. This can lead to problems like 404 errors (which you’ve experienced), incorrect page loads, or redirection to the wrong page, for example, being taken to an attribute archive instead of a filtered shop page.
The filter URL prefix should not be the same as the slugs for attributes, taxonomies, pages, and any other slugs on the site. The filter slugs should be unique, so if there is already a page, attribute, or anything else on the site with the slug localization, it should not be used for filter URLs.
You can use this hook – https://filtereverything.pro/resources/hooks/#terms-before-display-hook to rename some of your categories to another names if they do not fit.
Best Regards,
Victor
But if I disable the filter plugin, it doesn’t cause any problems and the sitemaps can be loaded. So it’s the filter plugin that’s modifying the writing rules. you can check it yourself.
https://goupeducation.com/localizacion-sitemap.xmlVictor hablas español?
Victor, I’ve managed to understand how the plugin works and I’ve disabled the parse_request for the taxonomic sitemaps that were causing the problems.
// excluye las reglas del plugin de filtros para los sitemaps de taxonomias
add_action(‘parse_request’, function($wp) { // Solo actuar si contiene ‘sitemap’ en la URL if (strpos($_SERVER[‘REQUEST_URI’], ‘sitemap’) !== false) { // Obtener el nombre base de la URL solicitada $request_uri = trim(parse_url($_SERVER[‘REQUEST_URI’], PHP_URL_PATH), ’/’); }, 1);
// Coincide con el patrón {taxo}-sitemap.xml
if (preg_match('/^([a-z0-9_-]+)-sitemap\.xml$/', $request_uri, $matches)) {
$taxo = $matches[1];
}
// Verifica que sea una taxonomía registrada
if (taxonomy_exists($taxo)) {
$wp->query_vars = [
'sitemap' => $taxo,
'sitemap-subtype' => $taxo,
];
$wp->request = $request_uri;
$wp->matched_rule = '([a-z0-9-]+)-sitemap\.xml$';
$wp->matched_query = 'sitemap=$matches[1]';
}
}
Now I have another problem, the H1 defined in the pattern is not painted well.
Can you help me please?
Hi informaticamediaadgo
We are not sure what you mean by the H1 not painted well. But currently when you are choosing filtering you get redirected to the actual archive pages since you are using the same prefix as your archive page slugs.
Best Regards,
Victor
SEO rules don’t apply to h1
Example
Courses in {location} {course-type} – Goupeducation
The rule doesn’t apply to content in h1s.
https://goupeducation.com/courses/location-barcelona/course-type-aesthetics-and-beauty/The h1 should be
Cursos en Barcelona de Aesthetics and beauty
They don’t work because when you select a filter term from “localizations,” you’re no longer on a filtered page (which is a courses page), you’re on a physical “location-barcelona” category page. This is exactly what we’ve been explaining: using the same slugs can be problematic and may lead to various issues and conflicts and 404 errors across the pages because of how WordPress is working.
If the SEO manager insists on using the same slugs for archive pages and for filter prefixes, despite knowing this can lead to conflicts and issues, they can experiment and rewrite the core WordPress functionality to match their specific requirements. That’s the only workaround available to make it behave as they want.
Best Regards,
Victor
Would it be possible to use filters with another prefix without using an underscore at the end? It doesn’t want underscores: (
fe_tipo-de-curso
by
tipo-de-curso-fe
??
Thank you for your patience Victor : )
Yes, you can use dash symbols for the prefixes like: term-something-something.
Just make sure that the first part, such as: “term” or any other name that you are going to use, doesn’t conflict with existing slugs. For example, archive pages might use slugs like term, and term-cars could lead to a physical taxonomy page. This can cause conflicts between archive and filtered pages, as they would essentially share the same URL structure.
Aside from that, you’re free to use the format however you’d like. The reason why we have added fe_ is because we know for a fact this will be a unique value that does not exist on the site.
Best Regards,
Victor
Another thing, Victor. I have another taxonomy for the filters, “Modality,” whose terms are in-person and online. If I select “online,” I need to hide the location filter. Or if I select an option from the “Location” taxonomy, I would need to hide the presence option. How would that be done?
Hi informaticamediaadgo
When you choose an exact filter term, and there are zero filter terms in the filter that you need to hide, then you can go to the Filter Set > below “And what to filter,” there will be options like “Hide empty filter terms > set to always hide” and another option “Hide empty filters > check the checkbox to hide them.”
But there are no options to hide exact filters by choosing the exact filter term in a certain filter.
Best Regards,
Victor
I’ve seen the empty terms option, but my problem is that I need to hide a term from a group when a term from another filter group is selected. According to the documentation, there are pre-filters and post-filters hooks. If I use it by modifying the filter object, could I solve this problem?
My problem, as I mentioned, is that when I select a city filter, the “in-person” option from the mode filter group shouldn’t be displayed. And conversely, if I select the online mode filter, the city filter group shouldn’t be visible.
I’m not sure if I explained myself correctly 
Thanks in advance.
Hi informaticamediaadgo
Could you please rewrite the request using abstract filter names to make it easier to understand?
For example:
We have two filters — filter-1 and filter-2. If a specific term is selected in filter-1, filter-2 should be hidden, and vice versa — selecting certain terms in filter-2 should hide filter-1.
Best Regards,
Victor
Case 1:
If filter {Ciudad} any term selected, hide term “online” from filter {Modalidad} Il filter {Modalidad} term “online” selected, hide All filters {Ciudad}
The {Ciudad} filter is not compatible with the “online” term of the {Modalidad} filter.
This is only achievable by the custom coding, here is a list of functions that can be helpful (specifically selected filter terms) – https://filtereverything.pro/resources/functions/
And here is the list of hooks like “wpc_terms_before_display” – https://filtereverything.pro/resources/hooks/ that can help to remove not needed filter terms.
Best Regards,
Victor
Hi,
The active filters is showing in two lines. There most be a bugg or something that I cant find it in the plugin. Can you please check this link: https://nrgel.se/produkter/laddboxar/tillverkare-amina-or-charge-amps-or-ctek-or-garo-or-zaptec/
Hi zaynwebagency
Thank you for choosing Filter Everything PRO.
This is what we see when following the link – https://prnt.sc/3tA_D8EPGL5b It appears there may be a bug with the link or a page, as it’s not displaying any filters on that page. Can you please fix it so we can check the page with the filters?
Best Regards,
Victor
Hi 19sanre19
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
Hello, I’m having a problem with the sitemaps and rewrite rules in the filter module.
https://goupeducation.com/sitemap_index.xmlFor taxonomies it clashes.
https://goupeducation.com/localizacion-sitemap.xmlError 404
If I disable the filter module the problem disappears
How can I solve it? I need the structure of the sitemaps to be this one and not another, and the URL structure of the taxo to be this one and not another.
Is there a way to exclude sitemaps from the plugin’s writing rules?
Another solution?
: )
Hi informaticamediaadgo
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
access credentials sent
access credentials sent
Done! The issue is that you used the same slugs for filter prefixes as already created for other pages on your site. This is causing the conflict, they should be unique.
Best Regards,
Victor
Hi,
I purchased this plugin September 2024.
I’m trying to make a change to the settings but its saying my license key is invalid.
Any help would be appreciated. Thanks
Hi killarneyplastics
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
Hi. I purchased your “Filter Everything Pro” plugin today and installed it at my development site. I am unable to get it to display filters in a column that is positioned to the left of the product display on my Shop page. Instead of displaying the filter I configured, it displays the message “There are no filters in the Filter Set yet. Please add them to the Filter Set related to this page.” So I am apparently either doing something wrong in how I configured the filter, or my WordPress environment is incompatible with your plugin. Below is my environment:
I am using the Divi theme page builder. My Shop page is at https://endfatiguewp.com/shop/. I am implementing the storefront using the WooCommerce short code “[products paginate=”true” filter-id=”801880”].” I am also using the Filter Everything short code “[fe_widget].” Can you tell me what I am doing wrong?
Thank you, Rich
Hi Rich
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 Rich
All done, everything is working now, please check it.
Also, for the security of your site, please avoid sharing your credentials in the comments section. Share them only via private message, as indicated in the instructions.
Best Regards,
Victor
Hi Victor. Thank you very much for resolving my problem. I’m sure that when I look under the hood I’ll now be able to revise the filter set to just how I want it. Have a great weekend!
Regards.
Rich
Hi Rich
If something is confusing or you get stuck at any step, let us know.
Best Regards,
Victor
I’ve created a filter for the promotion category in two languages. The first filter (French) https://prnt.sc/BONIByQ5-mcx works fine, but it seems the filter translation isn’t working due to an error in the “And what to filter?” option where “Select-query” is displayed. https://prnt.sc/GHv5T44J7C7n How can I fix this?
Hi jean280
Can you please send us the access and the link to that page where it is not appearing? All via PM – https://codecanyon.net/user/fe_support
Best Regards,
Victor
Hi
On the plugin the pro version changes the URL from example ?c=green to /c-green/ which messes up the code im using to make the main image change per colour filter selected is there a way of disabling the pretty permalinks
Hi greenpoint_computer_services
Thank you for choosing Filter Everything PRO.
Just place this code either in a code snippet plugin or in the functions.php file of your current theme:define( 'FLRT_PERMALINKS_ENABLED', false );
Then go to the filter set and hit the update button.
Best Regards,
Victor
Thanks for the help.
Sadly that is not good UX, that you have to click the button and not just enter on the keyboard.
Guess I need to look for another plugin.
We are sorry to hear that.
If the default plugin functionality does not fit your requirements, you can add a custom input field. That will redirect you to the required page with the added search data in the URL when you enter the text and hit the enter button.
Something like this shortcode example [custom_search_888]:
function custom_search_shortcode() {
ob_start();
?>
<form action="https://rottestop.the-pack.dev/find-produkt/" method="get">
<input type="text" name="srch" placeholder="Search products..." style="padding: 10px; width: 200px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px;" onkeypress="if(event.key === 'Enter') this.form.submit();">
</form>
<?php
return ob_get_clean();
}
add_shortcode('custom_search_888', 'custom_search_shortcode');
Best Regards,
Victor
Login details mailed
All done, you can check it now on the home page. Additionally, you might want to add some left padding to ensure the magnifying glass icon doesn’t overlap with the text input (see screenshot: https://prnt.sc/8vnfBB83hyNZ ).
The redirection filter only works with the “Apply Button” mode. Without it, it is not working.
Best Regards,
Victor
UPDATE:
I dont have/see the: In the Alternative Direction setting, select Common WordPress Page + Home Page.
Frontpage: (the serachbar) + Shoppage: /find-produkt/
Hi the-pack
Can you please send the credentials to the wp-admin dashboard following this document so we can check it?
Also, please send us the links to both pages:
1) The page you’re referring to is the home page, where you want the search filter to appear.
2) The target page, where the user should be redirected after clicking the Apply button.
This will help us set up a working example for you.
Additionally, please continue replying within the same comment thread. Creating new threads for the same issue makes it difficult to track the full context and history, which in turn makes it harder for us to provide accurate and timely support.
Best Regards,
Victor
UPDATE:
I dont have/see the: In the Alternative Direction setting, select Common WordPress Page + Home Page.
Let me try again.
I have made a filter, that shows up on the shop page. It has a search, and som normal attribute filter.
All works well. Now I just need a search-bar on my home page, So if you search in it it will work like you searched on the shop-page.
So all the filters on the shop page will not be on the home page. Only the searchbar.
Your guide did not help me.
For the filter for the shop page the following is selected:
Where to filter?: Common Wordpress page + Shop page And what to filter: Product query. Main Query.
What should be the settings for a searchbar only. And do I place it with a shortcode and the post no?
Hi the-pack
You need to create a separate filter set that contains only a search filter. Assign this filter set to Common WordPress Pages + Shop Page. Then, enable the “Apply Button” mode.
In the Alternative Direction setting, select Common WordPress Page + Home Page.
With this setup, when a user enters a search term on the home page and clicks the Apply button, they will be redirected to the shop page with the search term applied.
You can use a shortcode or a widget on a home page to display the redirection filter set.
Best Regards,
Victor
Hi, Is the plugin “Filter Everything — Product Filter & WordPress Filter” compatible with elementor product loop grid?
Regards
Hi kvinb6
Thank you for your interest in the Filter Everything plugin.
Yes, absolutely. Here you can check a demo page with the Elementor – https://demo.filtereverything.pro/elementor/
Best Regards,
Victor