Automatic Submission
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page pleaseIf you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.
Quote from bulli on November 15, 2023, 18:12Dear Support Team, we are currently using "Automatic Submission" in the filter. However, our customers would like to have a "Search Now" button.
How can we solve it so that as soon as a field is selected, filtering is already happening in the background, showing only available data in the other fields, and only when they click on "Filter Now," the page with the results and available products is displayed?
Thank you for your support.
Dear Support Team, we are currently using"Automatic Submission" in the filter. However, our customers would like to have a"Search Now" button.
How can we solve it so that as soon as a field is selected, filtering is already happening in the background, showing only available data in the other fields, and only when they click on"Filter Now," the page with the results and available products is displayed?
Thank you for your support.
Quote from Pablo Borysenco on November 16, 2023, 11:39Hello
Please watch this video - https://products-filter.com/video#zkyT-UPh5ps
Options - https://share.pluginus.net/image/i20231116113756.png and on widget settings - https://share.pluginus.net/image/i20231116113949.png
Hello
Please watch this video - https://products-filter.com/video#zkyT-UPh5ps
Options - https://share.pluginus.net/image/i20231116113756.png and on widget settings - https://share.pluginus.net/image/i20231116113949.png
Quote from bulli on November 17, 2023, 14:01Hello Pablo, thank you very much for the support.
We set the filter automatically, horizontally and not in the sidebar.
Where should I activate "From Ajax redrawing: "?
I emailed you about your programming, we need a little update please
Thanks for the support
Hello Pablo, thank you very much for the support.
We set the filter automatically, horizontally and not in the sidebar.
Where should I activate"From Ajax redrawing:"?
I emailed you about your programming, we need a little update please
Thanks for the support
Quote from Pablo Borysenco on November 20, 2023, 11:40Hello
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png
Read this - https://products-filter.com/shortcode/woof - you can add attribute ajax_redraw=1
Hello
Please paste your license key here - https://share.pluginus.net/image/i20230222134241.png -> https://share.pluginus.net/image/i20230222134511.png
Read this - https://products-filter.com/shortcode/woof - you can add attribute ajax_redraw=1
Quote from bulli on November 20, 2023, 14:09Hello Pablo, thanks for the support.
I have stored the licenses and the URL where I can't get any more.
We have not stored any code there.
We have the option to “set filter automatically” so that it is displayed there correctly.
You were so kind back then and gave us an update for the Hyrachie-drop-dwon, so I would also like something else. I emailed you about this.
Thanks for the support
Hello Pablo, thanks for the support.
I have stored the licenses and the URL where I can't get any more.
We have not stored any code there.
We have the option to “set filter automatically” so that it is displayed there correctly.
You were so kind back then and gave us an update for the Hyrachie-drop-dwon, so I would also like something else. I emailed you about this.
Thanks for the support
Quote from Pablo Borysenco on November 21, 2023, 11:18Hello
Ok! Try in file - wp-content\plugins\woocommerce-products-filter\js\front.js - add code - https://share.pluginus.net/image/i20231121111746.png
woof_ajax_redraw = 1;
and do a test
Hello
Ok! Try in file - wp-content\plugins\woocommerce-products-filter\js\front.js - add code - https://share.pluginus.net/image/i20231121111746.png
woof_ajax_redraw = 1;
and do a test
Quote from bulli on November 21, 2023, 15:52Hello Palblo, thanks, unfortunately it doesn't work, there is no search button displayed.
Best regards
//listening attributes in shortcode [woof]
woof_autosubmit = parseInt(jQuery('.woof').eq(0).data('autosubmit'), 10);
woof_ajax_redraw = parseInt(jQuery('.woof').eq(0).data('ajax-redraw'), 10);woof_ajax_redraw = 1;
//+++
Hello Palblo, thanks, unfortunately it doesn't work, there is no search button displayed.
Best regards
//listening attributes in shortcode [woof]
woof_autosubmit = parseInt(jQuery('.woof').eq(0).data('autosubmit'), 10);
woof_ajax_redraw = parseInt(jQuery('.woof').eq(0).data('ajax-redraw'), 10);
woof_ajax_redraw = 1;
//+++
Quote from Pablo Borysenco on November 22, 2023, 13:21Hello
Please clear all cache
if no luck - drop me wp-admin access - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
Hello
Please clear all cache
if no luck - drop me wp-admin access - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png
Quote from bulli on November 22, 2023, 20:35Hello, thanks for the support. Did you also receive the email regarding the drop down?
Best regards
Hello, thanks for the support. Did you also receive the email regarding the drop down?
Best regards
Quote from Pablo Borysenco on November 23, 2023, 13:03Hello
Did you also receive the email regarding the drop down? - support only on the forum. If you used the contact form I do not have access to this email
Please try in file - \wp-content\plugins\woocommerce-products-filter\index.php - add code - https://share.pluginus.net/image/i20231123130303.png
ajax_redraw=1
Hello
Did you also receive the email regarding the drop down? - support only on the forum. If you used the contact form I do not have access to this email
Please try in file - \wp-content\plugins\woocommerce-products-filter\index.php - add code - https://share.pluginus.net/image/i20231123130303.png
ajax_redraw=1
Quote from bulli on November 27, 2023, 20:42Hi, one more question please, if I enter the index.php under child-theme / woof /, it won't be taken over. how should I do that?
thanks for the support
Hi, one more question please, if I enter the index.php under child-theme / woof /, it won't be taken over. how should I do that?
thanks for the support
Quote from Pablo Borysenco on November 28, 2023, 12:55Hello
Please try to add in functions.php
add_filter('woof_filter_shortcode_args', function($args){
$args['ajax_redraw'] = 1;
return $args;
});
then the code in index.php will not be needed
Hello
Please try to add in functions.php
add_filter('woof_filter_shortcode_args', function($args){
$args['ajax_redraw'] = 1;
return $args;
});
then the code in index.php will not be needed
Quote from bulli on December 1, 2023, 18:48Dear Pablo, I noticed when I use the code that the redirection on the homepage no longer works with the code:
[woof autosubmit=1 redirect=/url/ tax_only='pa_alter' by_only='none']
How can I solve it so that it stays with the new change?
Thanks for Support
Dear Pablo, I noticed when I use the code that the redirection on the homepage no longer works with the code:
[woof autosubmit=1 redirect=/url/ tax_only='pa_alter' by_only='none']
How can I solve it so that it stays with the new change?
Thanks for Support
Quote from Pablo Borysenco on December 4, 2023, 12:37Hello
Please drop me exact link to the page where you use this shortcode
Hello
Please drop me exact link to the page where you use this shortcode
Quote from bulli on December 4, 2023, 12:44Hello Pablo, thank you very much. I have stored the URL in the “hidden area” above and stored your code in funktions.php for testing.
Thanks for the support
Hello Pablo, thank you very much. I have stored the URL in the “hidden area” above and stored your code in funktions.php for testing.
Thanks for the support
Quote from Pablo Borysenco on December 4, 2023, 13:56Hello
Please use only one filter (widget/shortcode) on one page
It works correctly the way you configured it - https://c2n.me/4jT5eN2
Hello
Please use only one filter (widget/shortcode) on one page
It works correctly the way you configured it - https://c2n.me/4jT5eN2