2797 comments found.
What exactly is the “Image Extension” function ?
What does it do ?
Hi, AJAX does not seem to be compatible with woocommerce memberships. this error throws (where product title should be) when i use ajax.
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘wc_memberships_show_product_loop_member_discount_badge’ not found or invalid function name in /home/content/00/9607100/html/newwordpress/wp-includes/plugin.php on line 525
Hello
That is mean that initialization of WOOF is quicker than https://www.woothemes.com/products/woocommerce-memberships/ – so to resolve it can be set in that plugin hooks more quicker in its code – OR try to use this wp-filter http://www.woocommerce-filter.com/hook/woof_products_query/ – return $query as is but just include_once files of that plugin and init it. This is just a couple of ideas, but reason in initialization of plugin hooks …
I ended up just removing the hooks in my functions.php file… I could probably find a workaround but i dont need the badges so removing the hooks is fine.
remove_action( ‘woocommerce_before_shop_loop_item_title’, ‘wc_memberships_show_product_loop_member_discount_badge’, 10 ); remove_action( ‘woocommerce_before_single_product_summary’, ‘wc_memberships_show_product_member_discount_badge’, 10 );
Great, thank you for cooperation …
Hi!
Love the free version – am going to buy the paid version. Where do i find the code to move the red woof top panel buttons. I figure you have it hooked into the top of the content? Can i hook it into a widget?
Hello
Of course -> http://www.woocommerce-filter.com/documentation/#!/section_3_1 -> use shortcode [woof_search_options]
Hi,
All is working fine. But I filter the products ( http://i.imgur.com/2lGWFb8.png ), the grid/list buttons are gone. How can I have them there, after filtering, too?
Thanks, Have a nice day
Hello Alexandr
Drop me link please. I think layout of products manages by GET variable which loose after each filtering – the best way keep layout mode in $_COOKIE array …
One moment, looks like you mean ajax redrawing! Hmm, in such case you should move them in another place OR use redirect mode …
Hi, Thanks for your time… here is the link http://usb.estatravel.net/shop
Hello Alexandr
Just looked – in case with that theme AJAX is not good way – just try to use redirection mode …
I am trying to implement an extension by providing additional filter option. My question is that how I can use your “woof_products_query” and “assemble_query_params” to manipulate your search query. It appears that the assemble_query_params only get calls when the “AJAX” option is called.
Just checked – works in both cases: http://www.woocommerce-filter.com/hook/woof_products_query/ – check that functions.php works before plugin initialization …
Hi, it is possible that the tags are added by crossing each other? For example: selecting tags “red” and “green” the result must be the products that are both red and green, and not all red with all green. Thank you.
Hello. Its is possible realize only if using shortcodes [woof_products]
* open your current theme functions.php file * on the same bottom of the file drop next code:
add_filter('woof_products_query', 'my_woof_products_query');
function my_woof_products_query($query)
{
$relations = array(
'product_tag' => 'AND'
);
if (!empty($query['tax_query']))
{
foreach ($query['tax_query'] as $key => $value)
{
if (in_array($value['taxonomy'], array_keys($relations)))
{
$query['tax_query'][$key]['operator'] = $relations[$value['taxonomy']];
}
}
}
return $query;
}
Using array $relations you can another taxonomies with their own relations …
Search is showing out-of-stock products. Why? What can I do to prevent out-of-stock products from showing up in the WOOF search? The products are all marked as out of stock with zero quantity.
Search is showing out-of-stock products – yes.
You can enable In stock checkbox for the search form
Thank you for the quick reply. Unfortunately, that is not going to work. Products go out of stock and should NOT be shown to customers… it just causes problems and disappointment. Even with a checkbox in the filter area… most customers will miss the checkbox. What the plugin needs is a checkbox in the admin asking if out-of-stock products should be shown to customers. That would seem to be pretty basic for an eCommerce site.
Hello
Hmm…Ok, in such way it is possible emulate that checkbox was checked!
Look an idea please: In index.php of the plugin there is function:
public function get_request_data()
{
return apply_filters('woof_get_request_data', $_GET);
}
So 2 ways:
- use wp filter ‘woof_get_request_data’ in your theme functions.php with code: $_GET[‘stock’]=’instock’;
- do $_GET[‘stock’]=’instock’; directly in public function get_request_data()
Okay. That would be acceptable. I’m not a dev, so EXACTLY what would you have me put in my functions.php file? I really like they plugin, just need it to only show in stock products.
Here is what I tried in my functions.php file:
{ return apply_filters (‘woof_get_request_data’, $_GET[‘stock’]=’instock’;); }
It didn’t work.
Hello
Try next please: * open your site current theme functions.php * go to the same bottom * drop next code:
add_filter('woof_get_request_data', 'my_woof_get_request_data');
function my_woof_get_request_data($data){
$data['stock']='instock';
return $data;
}
Just tried – works for me when searching is going …
Awesome. Thank you. I am leaving a five star review – both the support and plugin are fantastic. 
Thank you 
Hello! I created a filter in country-specific search [woof sid = “auto_shortcode” ajax_redraw = 1 autohide = 0 0 price_filter = taxonomies = pa_strana: 142 autosubmit = 1 is_ajax = 0 tax_only = ‘product_cat, pa_language, pa_progivanie, pa_programm, pa_vozrast’] page http://why-education.com/switzerland/. But after you select any of the filter result shows all the countries, rather than a specific 142
How to fix?
Hello Yana
I see no filter there
You have syntax error, should be: [woof sid=”auto_shortcode” ajax_redraw=1 autohide=0 taxonomies=”pa_strana:142” autosubmit=1 is_ajax=0 tax_only=”product_cat, pa_language,pa_progivanie,pa_programm,pa_vozrast”] – do not use spaces in shortcode between attribute and its value(s)
http://www.woocommerce-filter.com/documentation/#!/section_3_1Here he http://clip2net.com/s/3tSmBNV. You do not see it? The code I have no spaces [woof sid=”auto_shortcode” ajax_redraw=1 autohide=0 price_filter=0 taxonomies=pa_strana:142 autosubmit=1 is_ajax=0 tax_only=’product_cat,pa_language,pa_progivanie,pa_programm,pa_vozrast’]
What is in [woof_products] shortcode?
This tag is not used, it is not needed. There is a shift in the shop http://why-education.com/search-school/
Look please closely here: http://www.woocommerce-filter.com/documentation/#!/section_3_1
You can use pair of shortcodes only taxonomies=product_cat:9 – using term ID, not slug, + http://why-education.com/search-school/ what is on this page, which shortcode?
You do not understand me [woof_products per_page=8 columns=3 is_ajax=0 taxonomies=product_cat:9] I do not need this code. I do not want to see this page http://why-education.com/switzerland/ search result. From this page you should go to the right direction associated http://why-education.com/search-school/ store page. But redirection not correct and does not consider that the need to filter based pa_strana:142
I understood you, but you not me
Look – you have condition in search form and its work for form only – for dynamic recount! BUT this page http://why-education.com/search-school/ doesn know about it at all, just look on the result link now – where from result page know that you want show 142 country only?
- http://why-education.com/search-school/ – here should be implemented shortcode [woof_products taxonomies=pa_strana:142]
- In shortcode [woof] use attribute redirection (better idea): [woof redirect=”http://why-education.com/search-school/?swoof=1&pa_strana=germany”]
The proposed solution is not reached. Okay, you can do so that the country has been selected by default http://clip2net.com/s/3tVLjAy
Okay, you can do so that the country has been selected by default – use redirection in the shortcode on main page, drop there link like: http://why-education.com/search-school/?swoof=1&pa_strana=united-kingdom
Hello,
This looks like a great plugin. I am using a free version and thinking of purchasing it from you. I have a few issues. It looks like I have an identical problem as the user buju.
Every time I use any of the filters I get booted back to the main shopping page. Also I have made a custom page with placing the shortcode you supply into a sidebar widget. Can this work? So I can put the filter on multiple pages with one sidebar?
The site is orthostepinc.com and is currently is maintenance mode. I am also using the same theme as buju (Flatsome + child).
1. I’ve just changed the attributes to be archived but it doesn’t seem to do anything.
2. I’m not sure I need to change the slug name since they are all one words: size, width, color
3. I’ve set the “show count” and the “dynamic recount” to no. (Hide empty terms is off by default)
Can I get some direction and apply what is available to show my boss before we can make a purchase? or do you need to get into the site.
Regards, Joe
Hello Joe
Try to disable all plugins except woo+woof. To avoid redirection routing to categories pages should be native: http://www.demo.woocommerce-filter.com/product-category/clothing/
Hi Realmag777 – Are there any plans to add a TAG option to be able to change the logic from AND to OR as suggested by hecpalomares 7 months ago as that would be very useful?
“Is there a way to change the ‘OR’ logic for products-tags, to AND logic using Checkboxes?”
Hello Peter
I added wp filter in:- index.dphp
- private function get_tax_query($additional_taxes = ’’)
- return apply_filters(‘woof_get_tax_query’, $res);
- http://clip2net.com/s/3tOcAlw
So lets everybody decide self what they want modifying any logic using hook. Its feature which will bring me additional troubles/questions
+
In [woof_products] shortcode hook http://www.woocommerce-filter.com/hook/woof_products_query/
Hi Realmag777 – I don’t understand your reply, what has taxes go to do with TAGs logic?
Hello Peter
Maybe I not understood your question – what do you mean as word ‘TAG’?
I mean Product Tags
Hello Peter
Only that I described above, I think its not finished yet and I have to think how to make it more comfortable for users ….
Hi – that doesn’t make any sense to me. Let me know if you do add this functionality as I think it would be very useful as could reduce the number of attribute filters.
Hello Peter
I can suggest now only logic changing for shortcode [woof_products] http://www.woocommerce-filter.com/hook/woof_products_query/Hello, I have a lot od products in my shop. So, to segregate it, I have created custom taxonomies instead of products like: furniture (beds, desks, tables etc.) bedclothes(quilts, mattresses etc.). AND NOW: if I display archive page for “beds” term from “furniture taxonomy”, next I filter products and then click “Reset” button to reset filters, this redirect me to main shop page with all of products. How to redirect to archive term page back?
Hello
Drop me here link to page where redirect going to shop page
does this module work with woocommerce booking with date range filter ?
no
When will woo commerce 2.5 be supported?
supported http://www.demo.woocommerce-filter.com/
does the product categories filter doesn’t show on free demo plugin…?
Hi – I have upgraded from v1131 to the latest version for my live site from my test site, but my shop display is all squashed up widthways. I am using a short code to display 4 cols wide [woof_products per_page=8 columns=4 is_ajax=1 ] This is the test site screenshot and url (before which is working fine) http://prntscr.com/9wd1tc (http://www.blaguk.org/henfan/shop-2/) and after http://prntscr.com/9wd2oa which is http://www.henleyfan.com/. I am using Divi theme but have tried it on a test page without the Divi page builder and no difference. The shortcode works in layout terms but has no sidebar or filter if I change the page to full width.
I have since managed to get the shop displaying better but is smaller http://prntscr.com/9wdn72 and also is showing twice with larger product images but no filter underneath by making the Divi option on the shop full width.http://prntscr.com/9wdn72
I have since managed to fix it by trial and error – I have to leave the page setting blank in Woo products settings display – strange but true! Must be causing WP to paint the page twice and get confused but seems like a bug with Woo. I have Divi, Woo and WOOF all “working” together here.
Hello. Thank you for cooperation! So is it all ok now?
Yes it is working ok now thanks but I don’t understand why and what caused the problem!
Great!
How does this work with Salient theme?
http://themeforest.net/item/salient-responsive-multipurpose-theme/4363266You can test it https://wordpress.org/plugins/woocommerce-products-filter/
My client has purchase this but doesn’t know how to Choose RADIO/CHECK boxes Instead of list.
All info is here http://www.woocommerce-filter.com/
hi is it possible to export/import settings? Important when there is a lot of configurations to do. Thank you in advance
Hello
Data keeps in serialized array so you are need import plugin which works with it correctly
By the way – if you mean site migrating: https://wordpress.org/plugins/duplicator/ – this one work 99% perfectly
Hello, I just bought your plugin “WOOF – WooCommerce Products Filter” on CodeCanyon platform, but after downloading the file, I have not the desired product. The download link made me download the plugin (WooCommerce Currency Switcher v.2.1.5.1). the files inside the zip file do not match the plugin I wish good plugin please. thank you beforehand
Hello. Yes, I did mistake yesterday while uploading, send me PM please http://codecanyon.net/item/woof-woocommerce-products-filter/11498469/support and I will send you WOOF …
Not sure where best to leave a message, seems people are also commenting here.
I have bought the pro version. installed it. before i even add a widget to the widget shop area…. the widget appears in the wrong place, on the shop page.
See https://www.youtube.com/watch?v=7L-5SCO7zXA&feature=youtu.be
and
https://www.doodlebuckets.com/product-category/baby-showers-3/baby-showers/Help? How could this be happening?
Hello
Thank you for video …You forgot show in the video the plugin settings page – taxonomies should be checked to became visible, maybe there smth wrong+I do not know taxonomy+terms structure of the site. Write me PM please with wp-admin access to check all options and data …
sent you a pm