Code

Discussion on Filter Everything | WordPress/WooCommerce Product Filter

Discussion on Filter Everything | WordPress/WooCommerce Product Filter

Cart 16,183 sales
Recently Updated

Stepasyuk supports this item

Supported

This author's response time can be up to 1 business day.

9142 comments found.

Hello. I have a problem on https://hs-technik.com/en/products/nietwerkzeuge/. I have include the categories but on frontend it shows all products. Can you help me please?

Hello hs-technik.

Sorry for the late response. Accounts with expired support period have lowest priority in the support queue.

I would be glad to help you, but this expects valid support period. If your issue is still actual and you need my help, please, extend your support period and let me know here about this.

Thank you.

When Where to filter? settings is on common wp pages + all archive it works well. But when I want to activate only on category, then Selection is not as good. If you choose BMW, you get mercedes, bmw, etc. models No matter what brand you choose. If you go back to first settings “settings is on common wp pages + all archive” it works again…

Hello typhonb

It looks like you have also to select correct WP_Query in the “And what to filter?” field when you choose the Category page for the Filter Set. Please, try to experiment with different WP_Queries for that page.

Thank you.

Добрий вечір, працюю над сайтом (Тема Kadence Pro), спробував 3 плагіни фільтрів. Без режиму AJAX усі вони працюють добре, але мені потрібен AJAX режим) Безкоштовна версія плагіну працює краще ніж все, що я спробував, але все одно є нюанс. Макет сайту на всю ширину і фільтри заховані у ковзаючий сайдбар (як на мобільних версіях) який з’являється після натискання кнопки “Фільтри” і от після аякс запиту ця кнопка перестає відкривати цей самий сайдбар. В коді код кнопки розташований так, що я не можу в це поле (CSS id або class контейнеру з дописами) вписати потрібний класс щоб це працювало корректно. Я вписав туди тупо сітку продукту для експерименту і кнопка почала працювати адже вона не підпала під аякс запит, але лічильник відображених товарів і пагінація сторінок перестали працювати бо вони теж не попадають під аякс у такому випадку. Я бачу, що у платній версії є опція фільтрування кастомних WP Query. Чи правильно я розумію, що я зможу туди вписати потрібні класи котрі повинні мені допомогти і кнопка запрацює? Дякую за подальшу відповідь. Привіт із Харкова!

Привіт мужньому Харкову зі Львова!

Дякую за інтерес до плагіну. Надалі продовжу англійською, оскільки так буде зрозуміло іншим користувачам можилво з такою ж проблемою.

In general the problem is known issue described in common details here – https://filtereverything.pro/resources/ajax-related-problems/

If short – after you dynamically inserted the content on your page, all JavaScript events in this new inserted content should be re-initiated again. You can re-initiate them after the trigger “ready” fired
jQuery(document).on('ready', function(e){
    /* e.g. jQuery("[data-fancybox]").fancybox(); */
});

The PRO version works with content loaded by AJAX in the same way as the Free version. So to fix the issue you have to write few strings of JavaScript code that fires event on your button again. But of course I will be glad if you will use PRO versoin as it contains much more useful features than Free :-)

Thank you. Regards.

Вдалося знайти рішення для коректної роботи з темою Kadence саме у режимі AJAX використовуючи бічний ковзаючий слайдер.

1. Через спеціальні плагіни (Code Snippets у моєму випадку) або дочірню тему додаємо цей код у function.php: add_action(‘wp_footer’, function(){ ?> <script> function callback(mutationList, observer) { mutationList.forEach(function(mutation) { if (mutation.type === ‘attributes’ && mutation.attributeName === ‘class’) { if ( mutation.target.className == ”” ) { window.cadence.init(); } } }) }

const observer = new MutationObserver(callback); observer.observe(document.querySelector(‘html’), { attributes: true }); </script> <?php });

Пів діла зроблено, кнопка яка викликає бічний слайдер працює, але тепер некоректно працює спливаюче вікно пошуку і бічний слайдер кошику.

2. Міняємо у налаштуваннях плагіну (CSS id або class контейнеру з дописами) id з #main на #wrapper. Готово)

Від себе додам, що я спробував ще 2 плагіни і вони чомусь навіть з танцями з бубном не захотіли обробляти ще 2 кастомних сніпети у режимі AJAX (завжди переміщати проданий товар у кінець каталогу, навіть після сортування по ціні і тому подібне та прибирати ціну з проданого товару). Після запиту каталог завжди перемішувався і ціна з’являлась. Ваш плагін робить це з коробки) Дякую за такий якісний продукт, трохи пізніше розгляну покупку преміум версії заради читабельних URL) Далі буде авто переклад на англійську, можливо комусь знадобиться. Бо я бився з фільтрами майже тиждень)

Якщо знаєте як виділити код, щоб його було видно, дайте знати, будь ласка)

I managed to find a solution for working correctly with the Kadence theme in AJAX mode using a side sliding slider.

1. Through special plugins (Code Snippets in my case) or a child theme, add this code to function.php:

add_action(‘wp_footer’, function(){ ?> <script> function callback(mutationList, observer) { mutationList.forEach(function(mutation) { if (mutation.type === ‘attributes’ && mutation.attributeName === ‘class’) { if ( mutation.target.className == ”” ) { window.cadence.init(); } } }) }

const observer = new MutationObserver(callback); observer.observe(document.querySelector(‘html’), { attributes: true }); </script> <?php });

Half of the work is done, the button that calls the side slider works, but now the pop-up search window and the side slider of the cart do not work correctly.

2. Change the id from #main to #wrapper in the plugin settings (CSS id or class of the container with posts). done)

Hello, Your plugin is working fine on main language. But does not appear on second and third language. I’ve read all posts and answers, but all is set correctly. I also try something, create filter from another language directly, then it works, but when click on filter (choose brand), send visitor to wrong link.

Hello typhonb

Thank you for using Filter Everything PRO.

In general if you configured all things right it should work on all language pages of your site (demo example). I recommend you to look on this short article abot how to use the plugin with translation plugins – https://filtereverything.pro/resources/with-wpml-polylang/

Optionally you can send me credentials to your /wp-admin in accordance with this document and link to the page with the problem I will check it myself after some time.

Thank you.

Hello,

I just got your plugin in pro version. But I have a problem, the filters appear well in the shop page https://carpe-online.com/materiels-carpe/ , but when I am in a category of the shop https://carpe-online.com/materiels-carpe/cannes-moulinets-nylons-tresses/ or sub-category https://carpe-online.com/materiels-carpe /rods-reels-nylons-braids/carp-rods/ nothing is displayed in the main sidebar of woocommerce. This is quite annoying insofar as a megamenu lists the categories. Thanks for your help. Cordially

Problème réglé

Hello matsia2006

Thank you for using Filter Everything PRO.

I’m glad that your issue was solved. Thank you for your notification about that.

Hello! Thank you for all the support offered until now. Here is my question: When I make a dropdown filter, it appears the word „Select” and after is followed by the filter name. How can I remove the ’’Select’’ word? Or even change it so that I can translate it into my language? Thank you!

Hello kiklab

You have several ways to change the string - Select %s - to your own:
1) To translate it with the Loco translate plugin or other software if you use not-English language on your site.
2) To use the Templates overriding feature https://filtereverything.pro/resources/templates-overriding/ to override the dropdown.php template and replace the string.
3) To use hook ‘wpc_dropdown_default_option‘ if you are familiar with PHP development.

I added a new filter to my set but it’s not showing up on the front end. Only the parent filter shows.

Actually, it works, but not all applicable attributes show up in the filter. I know it’s there, because it shows up in the option to exclude it on the back-end, but it’s not showing up as on an option on the front-end.

Nevermind…I found the problem

Hello songsmash

I’m gald that your issue was solved. And thank you for your notification about that.

Hi Stepasyuk, i have bought a second plugin and have support now, can you please reset my first license. Best regards

Hi jooee

As I know, for the moment your issue is already solved. Please, let me know, if you will have any questions.

Thank you. Regards.

Hi, we can not update the plugin. Getting error message:

Das Paket konnte nicht installiert werden. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature

Please fix it!

Hello Cabanik

Thank you for your report. I already fixed this issue and now it works as expected. Please, update it and do not forget to create a DB backup before that. Sorry for the inconvenient.

Thank you.

Thx a lot for fixing. Now works fine.

Cant update, getting error: Update failed: The package could not be installed. PCLZIP_ERR_BAD_FORMAT (-10) : Unable to find End of Central Dir Record signature

Hello R3nderBoy

Thank you for your report. I already fixed this issue and now it works as expected. Please, update it and do not forget to create a DB backup before that. Sorry for the inconvenient.

Thank you.

Hello we are having two small issues-most importantly, after adding 8 post categories into a filter it is showing any other added categories as containing 0 (in this case the “other” category). We have tried adding the Query Monitor plugin but it is incompatible with something else on the site, we would appreciate if you’re able to take a look without it and see what else we can do to fix this issue. 2nd issue and maybe this is relate to the 1st, the plugin gives us an error message when we try to update it. Please advise, the site is located here: https://7868b54f5e.nxcli.io/video-learning/

Hello YetiSociety

As I know for the moment both issues are already solved. Please, let me know if you will have any questions.

Thank you.

Hi there.

Is it possible to filter by post month?

Rob

Hi nybbleinfo

Thank you for purchasing the plugin.

It is possible if you added post months as value in Custom Field or in Taxonomy. Filter by original WordPress post date is under development for the moment and will be available in the future plugin updates.

Hi Stepasyuk,

I’ve just bought Pro after trying out the free version – awesome plugin!

I have 2 questions…

1. Is there a shortcode for the ‘wpb posts found’ – I would like to remove it from above the filters and move it to above the results (I’m using the shortcodes to place the filters and chips on a custom blocks template).

2. In your 3 columns demo it says it requires some additional CSS – can you make that CSS available to me please as that is how I would like the filters to work. I have them as collapsing checkboxes already.

PS I am using your filters with the new CubeWP plugin for dynamic data which is like a free ACF Pro and it’s working great!

Thank you!

Edit – don’t worry about question 2 – I managed to get the css from your demo page and got it working. I’d still like to know about question 1 though please.

Hi – please can I get a response to this? thanks

Hi spiritlevel.

Thank you for purchasing the plugin and sorry for the late response.

It’s a good idea to add such shortcode. I already added it for the next plugin update. But if you want to get it faster, plese write me message in PM, I will provide you with link to the beta version of the plugin with such shortcode.

Hi, I have now purchased the Pro version. And I can still not make it work. I would like to apply category and tags filter to portfolio items from qi theme portfolio. I have tried all kinds of settings. The only thing I get is “No one Filter Set is related with this page. You can configure it in the Filter Set -> “Where to filter?” field” But I have tried all kinds of settings and nothing changes. Have any tip? Chiara

Hi chizar

Thank you for purchasing the plugin.

Please, send me credentials to your /wp-admin in accordance with this document I will check it myself.

Thank you.

Two pre-purchase queries for Stepasyuk – does this support the new Loop Builder, etc from Elementor or just the older controls for now – and – secondly, does it support dates, so on my event system I have each event with a start date and an end date – the possibility of filtering for events between x date and y date as specified by the user would be awesome

Hello DavidMiles

Thank you for your interest in Filter Everything PRO.

1. Yes, it should work with the new Loop Builder.

2. For the moment filter by dates is only under development and will be implemented in the future plugin updates.

Hi, pre-purchase question, is it possible to display filters like this? In dropdown and then checkboxes?

Hello FusionIdea

Thank you for your interest in Filter Everything PRO.

For the moment something like that is possible with small CSS adjustments. Please, look here on the 3 Columns demo – https://demo.filtereverything.pro/horizontal-views/#3-columns

Hi, I have now purchased the Pro version. And I can still not make it work. What am I doing wrong. I can only make the filter work with standard Woocommerce product arrive and not with Unlimited Elements or Happy Adonis woocommerce grid. I have tried also to create an own product archive with Elementor Loop Grid, but the filter doesn’t show, I have tried all kinds of settings. The only thing I get is “No one Filter Set is related with this page. You can configure it in the Filter Set -> “Where to filter?” field” But I have tried all kinds of settings. In this case I want to filter Products. Have any tip? BR Igor

Hi Igor.

Thank you for purchasing the plugin.

Please, send me credentials to your /wp-admin in accordance with this document I will check it myself.

Thank you.

Hi, Its sent! BR Igor

Hi igorl21

Thank you for your credentials. I checked your site and realized that you configured Filter Set wrong. If you want to filter specific Posts grid on particular Product Category page, you have to specify this Product Category page in the “Where to filter?” field and select approprite WP_Query that is releated with your Posts grid.

I already did it as example for you and sent you link on this example. Please, check your email.

Hey Stepasyuk, I send 3 possible domain names to you to search for & reset my license. Couldn’t you find nothing ? I have a multisite and dont have the license section with the newest version. I have tested your plugin only 1-3 days 9 month ago and want to use it now. I’am near finishing my site and want to work on the filtering part now. Can you please take a second look into it how we can reset / and finish this task ? Best regards jooee

Hey Stepasyuk, i have already bought plugins and themes several times and this project will consume, in long run, several buys. But i need to test it first, can you please tell me your concerns or the problem and how we can solve it. best regards

Hello jooee

Thank you for extending your support periods.

I checked addl domains you sent me via PM and ensured that no one from them uses license (in fact I found only record about one domain in my DataBase, but it also does not use license key). So it means your license key is not busy with any domain.

I recommend you to do the next – download the latest version of the plugin here on CodeCanyon. Install it via /wp-admin -> Plugins -> Add New (it will ask you to override existing plugin version, please accept this) and after your will get the License tab on your Filters -> Settings page.

Please, note that License key and CodeCanyon purchase code are different things. To set License key, please go to Filters -> Settings -> License, click on the “Get your License Key” https://prnt.sc/-ehm9df3H_XT and you will be redirected to the new page. Log in there with your Envato credentials and you will see your License key for the Filter Everything PRO plugin.

It this will not help you, please send me your License key (not purchase code) and your site credentials, where you want to activate the plugin, I will try to do in manually from my side.

Hello Stepasyuk, oh damn i found the issue. I worked too much and didn’t thought logical. Of course i have to look on my primary multisite website. Iam working on a second level wesbite and there is no “license” tab. So easy for so much trouble, sorry!

When the plugin is activated, it happens something strange. In my shop I have a category that contains some subcategories that contain products. Sometimes the category does not show subcategories and it shows all products that are in subcategories also if the first category is configured to show only subcategories. When it happens, I have to enter in the first category settings (that is configured to show subcategories) and without changing anything, I click on update button. In this way the category returns to show subcategories. But after some times (about 1 hour) the problem comes back again. The only way I found to solve the problem is deactivating the plugin and everything works fine. Now the plugin is deactivated, but do you have any suggestion?

I sent you credentials

Hello,did you have time for my problem? thanks

Hello gcavarza73

Please, check your email and let me know details. Thank you.

hello. I use that plugin for my client. but I don’t know how can i use it. I want to make a category list for every post-type page. and I need the A category and B category to be separated show. also, “author” will show every post-type page like a category.

I don’t understand your document. i just want make like your demo (https://demo.filtereverything.pro/posts/)

please I need your big help…

Hello didemf

Thank you for using the plugin.

In general if you wanted to create two Category filters inside one Filter Set it is not possible for technical reasons. But you also can create two Filter Sets, create there Category filters and put on your post-type page two Filter widgets. In this case you will get two different Category filters if you need.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey