WebWizards
Forum Replies Created
-
Hi there,
It’s certainly something we would consider.
We have received feedback that the default experience can be confusing or overwhelming, especially for new users, who are not familiar with WooCommerce.
So it makes sense to add a simpler, streamlined form.
A problem is that there are many different plugins that are based on the existing form (e.g. subscriptions, bookings, etc), so things would need to be done so all these plugins remain compatible.
We’ll consider this later on as that feature moves out of Beta.
Great, I believe the above snippet should do that. Let me know if you can get that working,
Hi there,
If I understand correctly, you’d like for one of your staff to receive a copy of B2B new order emails?
You can achieve this by adding this PHP code snippet to your site:
add_filter( 'woocommerce_email_recipient_new_order', 'filter_new_order_email_recipient', 10, 2 ); function filter_new_order_email_recipient( $recipient, $order ){ $b2b_email = '[email protected]'; if (is_object($order)){ $customer_id = $order->get_customer_id(); $is_b2b = get_user_meta($customer_id, 'b2bking_b2buser', true); if ($is_b2b === 'yes'){ // add another email $recipient.= ', '.$b2b_email; } } return $recipient; }You would change [email protected] with the email address you’d like to receive B2B orders.
Thank you so much : )
Thank you for clarifying,
Their theme supports WooCommerce so it should be technically compatible with B2BKing.
The area here https://imgbb.com/vmk2W5M is a custom area of their theme ( it’s not standard WooCommerce ) , so the only way to add an extra tab there for B2B would be with some custom code – they would need to assist with that because it can only be done by modifying their theme.
Our plugin works with the standard WP / Woo forgotten password form – any forgotten password panel should work.
Hi there,
I tested now locally on my test site using PHP 8.28 and the dashboard login was working normally for me.
In my experience, often when we see login problems on the dashboard it is because the page is being cached. Please make sure you do not have any caching on that page.
If you have a caching plugin you would need to exclude the dashboard – and also please check if there is any caching via your hosting.
Hi there,
B2BKing should be compatible with any theme that supports WooCommerce – I am not sure if that theme from Qode Interactive does – I cannot seem to find the specific theme you referenced.
If you create a registration form using a shortcode such as [b2bking_b2b_registration] then there is no need for other registrations, both private and B2B customers could register there.
Our plugin adds a dropdown for ‘user type’ where users can choose what they are registering for: https://prnt.sc/lx45GvltMf1y – there is no option for a tab, a custom design/code would be needed for that.
Hi again,
While this is not something we are able to add directly to our plugin right now, we would be happy to assist you with any technical support needed, questions, and so forth to help you with the integration.
For any such technical questions or assistance with the integration please just open a ticket with us at https://webwizards.ticksy.com in the pre-sales section, and our team will assist with any queries.
Hi there,
Thanks for using our plugin,
When using manual admin account approval, we recommend the following:
-> Go to WooCommerce -> Settings -> Accounts & Privacy and DISABLE this option: https://prnt.sc/V9xk55NlcLzj
By doing this, customers will be able to choose their own password directly during registration: https://prnt.sc/0yWdkaskn1_B
This is the best workflow in our experience, users set their own password, and this way you avoid any misunderstandings and confusion.
Possibly one of the other plugins on the site has some pricing effects and something changed with it when you deactivated and reactivated it.
I am not sure what it is – if you would like, our team can investigate it further if you’d like to open a ticket with us at https://webwizards.ticksy.com and share site access.
Have a nice day,
In my local tests, the price changes the same way for administrator users as it does for logged out users for example.
Is it possible that on your site you have some other caching that does not apply to administrator users? Maybe some caching at your hosting level?
I would still advise trying to disable plugins / theme, even if it’s not caching, it could be some kind of plugin conflict with another plugin that has effects on price.
It is possible to add an extra menu page there. Please scroll down to the end of this article where we have a guide and code example for this:
To reorder those, what you can do is to modify the sidebar.php template. In MarketKing, all dashboard templates can be customized, by copying them to your child theme. You can copy sidebar.php and then edit it to add, remove, reorder items. For that please see:
https://woocommerce-multivendor.com/docs/how-to-edit-marketking-pages-templates/
Thank you so much for your kind review : )
Hi there,
Thanks for using our plugin!
(1) I understand you’re referring to the WooCommerce “My Account” page. I suppose we could redirect this page to the MarketKing dashboard page, but the problem is, as you mentioned, for orders the sellers place directly.
I think the best solution is to work with a plugin that can customize the my account page and remove panels like Downloads, Addresses, etc. For example this plugin can do it: https://yithemes.com/themes/plugins/yith-woocommerce-customize-myaccount-page/?_1706790612
Sellers will see only their own purchases here (when they buy advertising, subscriptions etc).
(2) Regarding avatars:
In the latest version of MarketKing, I think this already works! We recently added a feature for this, so feel free to test. If a seller sets a profile image on the marketking vendor dashboard, it should show as their avatar in other places as well.
Hi there,
Thanks for using our plugin,
I’m not entirely sure why that happens, but it’s not really normal. For example, I tested on my local site with the Storefront theme and no other plugins except B2BKing and WooCommerce. This is what I see:
https://www.loom.com/share/fd6a812ca29e468e8b67bd02228b98fe?sid=dc226c9e-3ba0-49ca-b716-bab4de17b325
(the price adapts in the cart instantly to tiered pricing).
On your site, it could be caused by Litespeed cache. I would suggest disabling that plugin at least temporarily for testing. I would advise to try and deactivate all other site plugins / switch to the Storefront theme to see if this issue persists. Hopefully this could help you identify where this is coming from. It could also for example be a conflict with some other plugin that affects pricing.
Once you know more about what causes this (theme conflict, plugin conflict etc), please let us know and we can investigate further.