Code

Discussion on WooCommerce B2B

Discussion on WooCommerce B2B

Cart 4,309 sales

code4lifeitalia supports this item

Supported

This author's response time can be up to 2 business days.

539 comments found.

Hello there! I i am interested to your plugin but i have a few questions.First of all, is it compatible with WPML ? Moreover should we have a demo for a few days in order to see if it suits my site?

Thank you in advance

Hi aristot3lis! Yes, WooCommerce B2B is compatible with WPML. About demo, we haven’t a trial version, I’m sorry, but you can try the live working demo:

https://demo.woocommerce-b2b.com/wp-admin/

Here you can manage all options and simulate your desired scenario. Best regards

Hi. Would your plugin work with a B2C store where I also want to accept B2B resellers? I.e. would your plugin in any way change the shopping experience for regular customers?

Hi allmogens, WooCommerce B2B extends WooCommerce by adding features dedicated to B2B, but still allowing B2C sales on hybrid shops. The user experience is that of WooCommerce. To check more accurately, I suggest you take a look at the live demo:

https://demo.woocommerce-b2b.com/wp-admin/

where you can simulate your desired scenario and check if the plugin can be functional to your project and your needs. Best regards

Hello , we have a online fashion store and want to add wholesale feature to our website . but we are a clothe manufacturer and our products are in different sizes and colors , and in wholesale we want to sell products as packets (for example 1 S 1 M 2 L 1 XL 1 XXL) could we do that with your plugin ?

Hi iremgunes, I’m sorry but WooCommerce B2B doesn’t have this feature. Best regards

How can I setup minimum order for the same product but different sizes for a B2B shoe store?

Hi durwinius, please refer to:

https://support.woocommerce-b2b.com/

for support requests. Thanks and best regards

Is there a way to create discounts per category? So that all categories are visible, but the discount it applied only to certain categories?

Hi anteroriihimaki, please refer to:

https://support.woocommerce-b2b.com/

for technical informations. Thanks and best regards

demo is down

Hi lcm404, thanks for reporting. Demo is programmed to reset itself periodically to clean its data. Maybe you tried to access during this. Best regards

every time I have checked over the past few days its down. Says connection refused.

Hi lcm404, it’s very strange, there aren’t problems in demo. From logs and Analytics, users seems to access with no problem. If problem persists, please contact our support team dedicated to our users:

https://support.woocommerce-b2b.com/

providing your IP address or more info. Thanks and best regards

Hello, are you fully compatible with php8? Thanks :)

Is this just for a dedicated b2b site or can this plug in work on one woo site for both b2c and b2b. For example if not logged in or belonging to b2b group the users see a normal b2c site. If logged in and belonging to b2b group they would only see b2b products and pricing. Does this plug in support this?

Hi surferdave, how are you? I hope so! Yes WooCommerce B2B can be used with hybrid B2C / B2B shops: you can assign different prices depending on the customer group or if it is a guest. Regarding visibility, WooCommerce B2B has an option that allows you to decide the visibility of the product categories (and consequently of the products within them) according to the group to which the customer belongs. I suggest you take a look at the live demo:

https://demo.woocommerce-b2b.com/wp-admin/

so you can see the plugin working and simulate your desired scenario to understand if WooCommerce B2B can be suitable for your needs. Best regards

Hi, i have make a ticket but system says me error about “license”...i renewed it but nothing…can you help me please?

Ticket is: #6051eed800524

Hi ferithon, it’s enough to click on “I renewed my license, unblock this request” button. However, I unblocked manually your request!

Notice: Undefined property: stdClass::$slug in /plugins/woocommerce-b2b/includes/classes/class-wcb2b-upgrade.php on line 64

This setup is on localhost. Can you please fix it in the next version.

Thanks for your reporting!

Can a single dedicated price for each product be a percentage. I have for each product different percent discount, so it would be great to import only percentage, not a fixed priced. Is it possible?

Hi miaa_09, dedicated prices per product cannot be set in percentage. You can workaround by reverse calculating value from product price and percentage and bulk update by CSV using default WooCommerce import/export tools, as described in documentation. Please consider to make use of our dedicated channel for support: https://support.woocommerce-b2b.com/

Hi, how can I specify which currency different groups should pay in?

Hi cybermaster, for support please refer to proper channel:

https://support.woocommerce-b2b.com/

Hello,

I Have This Error (fatal error)

Error Details

An error of type E_ERROR was caused in line 57 of the file /home/clients/sites/fashionbeldi.shop/fashion/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-gateways.php. Error message: Uncaught Error: Class ‘WCB2B_Gateway_Quotation’ not found in /home/clients//sites/fashionbeldi.shop/fashion/wp-content/plugins/woocommerce-multilingual/inc/class-wcml-wc-gateways.php:57 Stack trace: #0 [internal function]: WCML_WC_Gateways->loaded_woocommerce_payment_gateways(Array) #1 /home/clients/sites/fashionbeldi.shop/fashion/wp-content/plugins/sitepress-multilingual-cms/vendor/wpml/fp/core/Fns.php(363): call_user_func_array(Array, Array) #2 /home/clients/bacc9f0a8c79e4198872cda0a269c63d/sites/fashionbeldi.shop/fashion/wp-includes/class-wp-hook.php(292): WPML\FP\Fns::WPML\FP\{closure}(Array) #3 /home/clients/sites/fashionbeldi.shop/fashion/wp-includes/plugin.php(212): WP_Hook->apply_filters(Array, Array) #4 /home/clients/sites/fashionbeldi.shop/fashion/wp-content/plugins/woocommerce/includes/class-wc-payment-gateways.php(85): apply_filters(‘woocommerce_pay…’, Array) #5 /hom

Hi nestprod, for support please refer to proper channel:

https://support.woocommerce-b2b.com/

Hi, thanks for a great plugin. But the import auto field mapping do not work. Are you sure that the function import_mapping_options is correct? if i’m instead of writing the column name “Regular price (GROUP_NAME)” write the key as my column name “wcb2b_product_group_prices:386:regular_price” then the auto mapping works. I think some where the key and value has been switched around.

This should do the trick.

Add to this file: class-wcb2b-admin-products.php

add_filter( ‘woocommerce_csv_product_import_mapping_default_columns’, array( $this, ‘add_column_to_mapping_screen’ ) );

public function add_column_to_mapping_screen( $columns ) { $groups = wcb2b_get_groups(); if ( $groups->have_posts() ) { while ( $groups->have_posts() ) { $groups->the_post(); $name_regular_price = sprintf( __( ‘Regular price (%s)’, ‘woocommerce-b2b’ ), get_the_title() ); $name_sale_price = sprintf( __( ‘Sale price (%s)’, ‘woocommerce-b2b’ ), get_the_title() ); $name_tier_prices = sprintf( __( ‘Tier prices (%s)’, ‘woocommerce-b2b’ ), get_the_title() ); $columns[$name_regular_price] = ‘wcb2b_product_group_prices:’ . get_the_ID() . ’:regular_price’; $columns[$name_sale_price] = ‘wcb2b_product_group_prices:’ . get_the_ID() . ’:sale_price’; $columns[$name_tier_prices] = ‘wcb2b_product_group_prices:’ . get_the_ID() . ’’; } } return $columns; }

Hi there,

With this plugin, can I create certain pages that will be hidden unless customers are logged in (not password protected)? Or will it just hide my shop pages or my entire site?

I have a products table plugin that is a regular page with a code on that brings up the table. When I used another private store plugin, this page did not get hidden as it wasn’t a ‘shop’ page. I also have a page with a wholesale catalogue PDF which I would like to show to only logged in users.

I basically would still like some pages to be accessible to the public, eg info about my business but I would like to have the option to hide all of my ‘shop’ pages and specific ‘normal’ pages too.

Also… I will have a plugin that creates PDF invoices for each order. This will show a custom meta field (location number for my warehouse). With your plugin, if somebody uploads a csv – when the order is created, will it affect the PDF at all? Or will it show as any normal order so will then be fine working with a PDF plugin?

Thanks

Hi Beckij, WooCommerce B2B has an option called “Page visibility by group” that allow you to restrict pages visibility according to customer group. Regarding PDF, WooCommerce doesn’t affect order creation, so don’t worry!

Perfect, thanks! Will buy now :)

Which woo theme do you recommend to use your plugin?

Hi it_marema, we do not recommend one theme rather than another, it depends on your specific needs and your business. From our perspective, WooCommerce B2B uses all WordPress / WooCommerce standards and hooks, so it’s compatible with all themes that adhere to the same best practices.

Hi, is there an option to have a quick order page (not csv upload) and if there is, does it include photos? I sell greeting cards and need a quick order page that shows all my 300+ designs so customers can see them and order quickly from one page. If there is this option, do you have a screenshot that shows what it looks like? Thanks

Hi Beckij, WooCommerce B2B has “live search” functionality which allows you to quickly add to cart and includes product images. You can see it at work in the demo:

https://demo.woocommerce-b2b.com/live-search/

Thanks for the reply :) I am however looking for a quick order page that lists all of my products without customers having to search. Something like this: https://prnt.sc/106vsd3

You’re welcome! I’m sorry, WooCommerce B2B hasn’t this kind of feature

Hola tengo una pregunta. Cuando le das a la sección de productos en el panel de administración y te aparece el listado de productos, la imagen, la fecha de publicación, el precio venta público… Aparece también el precio de distribución??? O hay que entrar dentro del producto o darle a editar para poder verlo. Sería genial que en el listado de productos aparecieran los dos precios el precio venta público y el precio de distribución. Asi de un vistazo rapido se podria ver ambos precios.

por otro lado tengo otra pregunta se pueden establecer para un mismo usuario distinto porcentaje de descuento según la categoría del producto. Gracias y un saludo

Hi ECOportatil, this is unfortunately not possible because WooCommerce B2B is developed to allow you to have several groups and therefore several prices and displaying them in the list (in the case of several groups) would have a negative impact on performance

ok vale, pero como te pregunte pueden verse los precios desde fuera en el listado de productos, o hace falta entrar uno a uno para verlos?

Un saludo

No, as I told you, the prices per group cannot be seen in the list

Hi is it possible with this plugin to 1. have a discount for total value. e.g. 20% off up to $2000 worth of products, 30% off from $2000-$5000 and 40% off over $5000. 2. Free shipping in Australia between $300-$2000 and calculated shipping outside Australia and/or over $2000. Thanks

Hi Mineralsalt, I’m sorry but WooCommerce B2B hasn’t this kind of features

Hi, with this plugin, is it possible to send PDF invoices along with confirmation emails? Also, is it possible to create a custom section that shows on receipts and invoices that is similar to a SKU? My fulfilment centre needs a ‘location number’ to locate my items in their warehouse. Thanks :)

Hi Beckij, I’m sorry but WooCommerce B2B hasn’t this kind of feature

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