WebWizards
Forum Replies Created
-
Glad to hear that worked : )
You can find a list of hooks (including filters) here https://woocommerce-b2b-plugin.com/docs/developer-documentation-hooks-functions-custom-code/#1-toc-title , although it is not a complete list.
If you have anything in particular you’d like to achieve, let us know and we can advise on whether that’s possible.
Have a great day,
Hi there,
You can allow all roles there on the customers page, by adding this PHP code snippet to your site:
add_filter('b2bking_admin_customers_page_role', function($roles){ return array(); }, 10, 1);That can be added to functions.php or to any snippets plugin.
Thank you so much : )
Glad if I could help : )
If you feel it deserves, please consider leaving a rating for the plugin here on ww.wp.xz.cn, it’s a big help to us.
Hi there,
Currently we don’t have a migration wizard between the two. There are some similarities: for example, products that belong to a vendor in Dokan will also belong to that vendor in MarketKing.
There are some differences in pages configuration and vendor stores configuration, so vendor stores would need to be set up again.
Also for orders and earnings, you would need to either migrate manually, or just start all vendors from 0.
Thank you for the feedback and we’ll consider working on a migration tool in future updates,
Hi Rafael,
We do not currently have a repository of older B2BKing Core versions I’m afraid.
I understand you are facing an issue with user approval – please see my reply in your other ticket as well. I think most likely you have some JS issue on your site.
Hi there,
Are you seeing the range, but you’d like to see only the minimum price?
In B2BKing -> Settings -> Tiered Pricing, please make sure to deactivate “Show Tiered Price Range”, as that might interfere.
Furthermore, add this PHP code snippet to your site:
function iconic_format_price_range( $price, $from, $to ) { return wc_price($from); } add_filter( 'woocommerce_format_price_range', 'iconic_format_price_range', 10000, 3 );This should help show only the minimum instead of the range.
I believe you may already have some other code snippet that does something similar, if you do, it may help to share that, as it might conflict with the above.
As this pricing feature is part of B2BKing Pro, we can best assist you if you open a ticket with us at https://webwizards.ticksy.com – there we can also check the setup directly on your site if you provide site or staging site access.
- This reply was modified 2 years, 6 months ago by WebWizards.
Hi there,
I tested that now with the 4.6.60 version but I do not see this issue.
If nothing happens when you click on the ‘approve’ button, usually that means there’s a JavaScript error in your browser console (right click -> inspect -> console with google chrome). I advise you check for any red errors there.
Usually when we see this it’s because some other plugin or piece of code is creating a JS error that also interferes with our script. You can try to deactivate all other site plugins to see if that resolves the issue.
If you also use B2BKing Pro, you can open a ticket with us at https://webwizards.ticksy.com and we can check this in more detail there, including on your site directly – here on ww.wp.xz.cn we’re not allowed to do that.
- This reply was modified 2 years, 6 months ago by WebWizards.
Hi there,
Thank you for getting in touch!
Implementing HPOS is on our immediate development list – we are aiming to add this to the plugin in the next few weeks.
To show the RRP price incl. VAT you would need to add this code snippet to your site:
add_filter('b2bking_both_prices_retail_adjust_tax', '__return_false');Hi there,
Thank you for getting in touch,
These features are available in our plugin’s Pro version only.
To configure that tax setup you would need to set up a tax exemption rule. We have a guide for how this can be configured here: https://woocommerce-b2b-plugin.com/docs/how-to-display-prices-excluding-tax-for-b2b-users-and-including-tax-for-b2c-users/
You can also set it so that retailers also see the RRP price incl VAT. This setup is described in our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-display-rrp-recommended-retail-price-to-b2b-users/
If you have any issues with these configurations of the Pro plugin, please open a ticket with us at https://webwizards.ticksy.com and we can assist you there with the setup,
Hi there,
Thank you for using our plugin,
I’m afraid there is currently no backend integration for currency rules. We have a backend integration for group/tiered prices and for some rules like discount rules, but this cannot yet work with currencies.
To place orders for customers in this case, I would advise to login as that customer and place the order via the site frontend. To do this, you can use this free plugin which adds a “login as user” button: https://ww.wp.xz.cn/plugins/login-as-user/
We will consider adding an integration so this can work directly via the backend, but it is quite complex and would also depend on the currency plugin – I am not completely sure if it’s possible.
Forum: Plugins
In reply to: [Price Based on Country for WooCommerce] Set currency programmaticallyThank you for the great answer, it works.
Hi there,
By default, B2BKing does not use WP Roles such as “editor”, “administrator”, etc.
If you have roles on your site for client / wholesaler, I believe these were added through a different method / different plugin, as B2BKing does not add those.
B2BKing only uses its own groups. However, it is possible to make B2BKing use roles as well, and sync these roles with groups. To do this, please follow the guide here: https://woocommerce-b2b-plugin.com/docs/how-to-use-wp-roles-with-b2bking/
B2BKing will create a role for each of your B2B groups, and will sync role with group.
Hi there,
The free version of MarketKing only supports simple products I’m afraid. For access to all product types, you would need the MarketKing Pro plugin. However, it depends on how that custom type is created – I am not 100% sure if it will be compatible.
If you’d like, I can check if that is compatible or not. For that, please let me know: what plugin or custom code are you using to create your custom product type?