WebWizards
Forum Replies Created
-
Hi,
This feature is a work-in-progress, it’s not available anywhere yet (neither in the pro or free plugin yet).
Once it’s ready, I believe we will add it to the free plugin as well, we’ll be releasing a major update in the next few weeks.
Hi there!
This is not available yet, but we’ve been actually working on adding this for the next update.
This is what we have so far: https://prnt.sc/7Af4pAQljy1z
Reports would include:
- Gross Sales
- Net Sales
- Number of Orders Placed
- Number of Items Sold
- Filter by B2B Group or by individual B2B Customer
- Export as CSV
If you have any feedback or suggestions, we’d love to hear it!
Thank you so much : )
Hi there!
Thanks for using the plugin,
This is possible, but only in the Pro version of the plugin I’m afraid.
If you are using or considering that, the easiest way to hide products/categories from logged out users is probably through the “Hide shop & products” setting described here:
Kind regards,
Stefan
Hi there,
It’s possible to enable quotes on specific products only. This is done by creating a “Quotes on Specific Products” dynamic rules in B2BKing -> Dynamic Rules (in the pro version).
However, this cannot be based on whether the product has a price or not. It’s based exclusively on the dynamic rule, so if you add a price to the product, you’d need to remove the product from the quote rule.
Hi there,
Thanks for using our plugin,
While this is not available in the free plugin version, in the Pro version you can indeed create any number of custom registration fields (this is done via B2BKing -> Registration Fields -> Add New).
You could create a business ID field and make it required.
All fields are editable, so you can create fields, edit fields, remove fields (you can remove the VAT field as I understand that’s not relevant)
Hi there,
Please be more specific about what issues you are facing on mobile.
All pages should be mobile friendly, e.g.:
Perhaps there’s some conflict with your theme, but it’s difficult to say without more details,
Hi Rafael,
Thank you for reaching out to us,
This is something we’ve looked at and we have started making necessary changes to allow B2BKing to work with HPOS.
I believe we will have this ready later this year (maybe in the next few months), but I can’t give a specific date.
If I can help with anything, please let me know.
Kind regards,
Stefan
To achieve that, you can add this PHP code snippet to your site:
// Add a filter to check the cart before proceeding to checkout add_action( 'woocommerce_check_cart_items', 'check_cart_authors' ); function check_cart_authors() { // Initialize an empty array to store author IDs $author_ids = array(); // Loop through each item in the cart foreach ( WC()->cart->get_cart() as $cart_item ) { // Get the author ID of the current item $author_id = get_post_field( 'post_author', $cart_item['product_id'] ); // If the author ID is not in the array, add it if ( ! in_array( $author_id, $author_ids ) ) { $author_ids[] = $author_id; } } // If there is more than one author in the cart, show an error message and prevent checkout if ( count( $author_ids ) > 1 ) { wc_add_notice( __( 'You cannot checkout because the cart contains products from different vendors.', 'woocommerce' ), 'error' ); // Remove the "Proceed to Checkout" button remove_action( 'woocommerce_proceed_to_checkout', 'woocommerce_button_proceed_to_checkout', 20 ); } }It will show an error on the cart page if there are multiple vendors:
The code can be added to functions.php or to any snippets plugin.
Also, to remove the standard message there saying “The products in your cart are sold by multiple different vendor partner….” you can go to MarketKing -> Settings -> Language & Text, and delete it.
Hi there,
I’m afraid we’re not currently aware of any POS plugin that can do that (to pull the specific price of a customer automatically).
Any POS plugin should work with B2BKing as well, but the price would have to be looked up manually when the order is being created.
Hi there,
I tried to see what happens when I activate the Woodmart theme in local tests, but I do see the vendor is already displayed by default: https://prnt.sc/VxDDW5YgA422
It probably has to do with your specific Woodmart Settings or Demo used.
I would suggest trying to show it with the code you already use, but to hide the unwanted elements (like category, sku etc) using CSS. On my local site I can hide category and SKU by adding this CSS to the site:
span.sku_wrapper, span.posted_in { display: none; }We’re also happy to assist you to hide unwanted elements if you can provide us with a link to your site / page, so we can view it.
Hi there,
Thanks for the feedback,
The error seems to say that no decimals separator is configured in WooCommerce -> Settings.
In any case, I have now made a change that should help solve this and prevent the error – it will be added to the next release of B2BKing Pro. We can also send this update to you privately if you would like – for that, please open a private ticket with us at https://webwizards.ticksy.com (as this is part of the pro plugin and we cannot attach it here)
Thank you so much : )
Glad to hear that’s working : ) If there’s anything else we can help with, please let us know.
Also, if you have a minute, I would really appreciate it if you considered leaving a quick rating: https://ww.wp.xz.cn/plugins/b2bking-wholesale-for-woocommerce/#reviews – it’s a huge help to us!
Thank you so much : )