forau
Forum Replies Created
-
Forum: Plugins
In reply to: [Import and export users and customers] Retaining user ID when importingMany thanks for your quick response.
I’m quite familiar with SQL and feel quite confident, although it would be helpful if you could give me a push in the right direction? Any documentation or anything you recommend? Don’t worry, I have full backups, I wont blame you if anything goes wrong ??
Thanks.Totally agree.
Forum: Plugins
In reply to: [Easy Notification Bar] Move Bar To BottomApologies for the delay but that’s excellent, thankyou ??
Forum: Plugins
In reply to: [WooCommerce] Add filter for specific category onlyThanks Gabriel.
Just to expand on my previous post, i’ve tweaked the code and come up with the below;
add_filter( 'woocommerce_product_categories_widget_args', 'exclude_widget_category' ); function exclude_widget_category( $args ) { if ( is_product_category(2921) ) { $exclude_terms = array(); array_push( $exclude_terms, 2548, 2245, 2775, 2913, 2846 ); $termchildren = get_term_children( '2548, 2245, 2775, 2913, 2846', 'product_cat' ); foreach( $termchildren as $child ) { $term = get_term_by( 'id', $child, 'product_cat' ); array_push( $exclude_terms, $term->term_id ); } $args['exclude'] = $exclude_terms; return $args; } else { $exclude_terms = array(); array_push( $exclude_terms, '2921' ); $termchildren = get_term_children( '2921', 'product_cat' ); foreach( $termchildren as $child ) { $term = get_term_by( 'id', $child, 'product_cat' ); array_push( $exclude_terms, $term->term_id ); } $args['exclude'] = $exclude_terms; return $args; } }
When I go to my Services category it displays fine, just Services with its subcats. But if I navigate to one of those subcats the products menu (with 5x cats) appears. Im really not sure what i’m doing wrong!
Forum: Plugins
In reply to: [Grid/List View for WooCommerce] PRE-PURCHASE QUESTIONThanks for your prompt reply.
Before I continue my search elsewhere I was wondering if you have any recommendations on how I can achieve what i described in my first post?
I just want one category (events) to be displayed as a list ??
Many thanks.
That new section is due to the Facebook For Marketplace addition to WCFM in a recent update.
You need to go to Capabilities and disable FB Product Sets for your vendors.
Forum: Plugins
In reply to: [WooCommerce] Disable product image swap on hoverPerfect, thanks for your help.