WP Native
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocomerce Supplier or Wholesale@chiremba87 Well. The short answer to your question is No. However you can create a multivendor site with Dokan where multiple vendors can list, manage their products, stocks and order independently.
Cheers??
Forum: Plugins
In reply to: [WooCommerce] Add or replace column in Order Confirmation EmailForum: Plugins
In reply to: [WooCommerce] Hide Add to cart button when a variable product is out of stockHello @cjbreither
Why don’t you simply disable to the out of stock variation in the first place?
https://prnt.sc/u0t06hCheers??
Forum: Plugins
In reply to: [WooCommerce] Display of reviews WooCommerceForum: Plugins
In reply to: [WooCommerce] Spinning wheel on product image/thumbnail@patrickteh7337 Two possibilities;
1. Could be theme related issue. Navigate to appearance > Customization to see if there’s an option to disable the lazy load
2. Check your caching plugin if you got one. Try to disable the lazy load.
Cheers??
Forum: Plugins
In reply to: [WooCommerce] Update to 4.0Forum: Plugins
In reply to: [WooCommerce] Emailing cart detailsHi @manigopal
Check this plugin out. The plugin hasn’t been updated for a while now. But it does work with Woo & WP up to date version.
Cheers??
- This reply was modified 4 years, 7 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Unable to install woocommerceHello @fitnessinfoindia
1. Make sure that your server meets these requirements
2. Login to your C-Panel and navigate to plugin to see if there’s Woocommerce directory is exist. Delete em if yes.- This reply was modified 4 years, 7 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Update to 4.0Hello @isabella92
1. Check this plugin out (https://www.ads-software.com/plugins/wp-rollback/)
2. Yes. Woo 4 & 4.3 is compatible with WP 5.5@rur165 Thank you. Would you be open to share the code snippet? So that will help myself others too.????
I found piece of this code which output the product. Can I add commissions instead?
add_filter( 'manage_edit-shop_order_columns', 'show_product_order',15 ); function show_product_order($columns){ //add column $columns['product-display'] = __( 'Products'); return $columns; } add_action( 'manage_shop_order_posts_custom_column' , 'snv_custom_shop_order_column', 10, 2 ); function snv_custom_shop_order_column( $column ) { global $post, $woocommerce, $the_order; switch ( $column ) { case 'product-display' : $terms = $the_order->get_items(); if ( is_array( $terms ) ) { foreach($terms as $term) { echo $term['item_meta']['_qty'][0] .' x ' . $term['name'] .' '; } } else { _e( 'Unable get the products', 'woocommerce' ); } break; } }
- This reply was modified 4 years, 7 months ago by WP Native.
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Featured Product Query@paragjp Your question is not clear. Can you share the exact product link? screenshot might helpful ??
Forum: Plugins
In reply to: [Wallet for WooCommerce] Wallet topup is done as a product@saddu8821 Yes, this can be given as a form of coupons/discount etc…
Forum: Plugins
In reply to: [WooCommerce] Cannot add variable products to the cartHey @deadro
Take a look at this solution below.
https://kb.oboxthemes.com/articles/woocommerce-add-to-cart-button-not-visible-on-variable-products/
Forum: Plugins
In reply to: [WooCommerce] Display custom taxonomy in shop products@nicolamustone Thanks for your response. I’d greatly appreciate it if you could share the code snippet here.
This is how my slug looks:
https://www.example.com/wp-admin/edit-tags.php?taxonomy=product_brand&post_type=product
????