WebWizards
Forum Replies Created
-
Hi there,
Thank you for reporting this issue,We’ve released a plugin update that we believe resolves this.
Please update and let me know if that solved it for you.Thank you for reaching out,
Setting prices in bulk can be achieved through the plugin’s price import / export feature. However, this is a premium feature and only available in our paid version. You can read more about how this works here: https://woocommerce-b2b-plugin.com/docs/how-to-bulk-import-export-product-prices/
Kind regards,
StefanForum: Plugins
In reply to: [WooCommerce] woo commerce filling up physical memoryHi there,
We’re the B2BKing developers – regarding the critical errors above:– The error you see there means that you do not have enabled the SOAP / SoapClient service in PHP – you would have to enable it through your hosting / possibly you can do it via cPanel, or you may have to contact your hosting support.
– It is connected to the VIES validation of VAT numbers. Our plugin uses SOAP to connect with the Europa.eu validation service. You can simply disable VIES by going to B2BKing -> Registration Fields -> VAT and disabling the “VIES” checkbox. The error would then go away if you disable it.
I’m not sure if this is connected to the memory issue – I just wanted to let you know about this specific error you’re seeing there.
Kind regards,
StefanHi there,
Yes, the plugin shows B2BKing pages for settings and configuration in the backend.
We can help you hide it with custom code snippets, as part of support for our premium plugin version.
Hi there,
We are the B2BKing developers.
Have you already enabled the method in B2BKing -> Groups as explained in our article here? https://woocommerce-b2b-plugin.com/docs/faq-how-to-fix-no-available-payment-or-shipping-methods-issue/If that’s not available to enable, please see points 2 and 3 in the above article.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Product Visibility IntegrationThanks a lot Ernest,
This seems to work very well. I’ve added this compatibility to our B2BKing plugin and it will be live with the next update release.
Cheers,
- This reply was modified 3 years, 1 month ago by James Huff.
- This reply was modified 3 years, 1 month ago by Steven Stern (sterndata). Reason: link to envato removed
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Empty Search ResultsHi Ernest,
It seems that doesn’t work unfortunately. If you added a filter to the search plugin, as I suggested here https://www.ads-software.com/support/topic/product-visibility-integration/ we could easily integrate our plugin with yours.
To remind you: we need a filter in class-asl_helpers.php in the function toQueryArgs() for the “post_in” argument.
Forum: Plugins
In reply to: [Ajax Search Lite - Live Search & Filter] Empty Search ResultsHi there,
We are the B2BKing plugin developers. Please try to go to B2BKing -> Settings -> Other -> enable “Product Visibility Cache”. This setting is usually necessary for visibility to work in ajax searches.
Hi there,
Currently our plugin depends heavily on the frontend Hooks/Cart system to set up b2b pricing, discounts, tax rules, etc. Those hooks do not have backend equivalents and as such it is difficult to replicate our code there. As far as I know, most wholesale plugins have the same limitations.
Currently the only solution to create orders for B2B users with correct pricing with our plugin, would be to log in as the user.
You can use the following plugin that we have tested with B2BKing:
https://www.ads-software.com/plugins/login-as-user/
Regarding the SKU request: it’s already on our list of improvements for the next updates, thanks for the feedback.
Hi Gary,
This can be done by creating a registration field in B2BKing -> Registration fields and selecting “File Upload” as the field type. This is a premium feature and available only in the premium plugin version. You can check how it works in the plugin’s live demo at https://demo.woocommerce-b2b-plugin.com/wp-admin/
Hi there,
I’m just considering possible solutions:Would it be helpful for you if I sent you a code snippet that Copies Billing Data into Shipping data, when the user logs in for the first time?
That way regular billing-connected fields in registration effectively also become shipping-connected fields.
Let me know if that helps,
Kind regards,
StefanHi Karan,
Thank you for using our plugin,If you want to clear all existing B2BKing data from users, posts, products, settings, custom B2BKing posts, etc., you can run the following snippet once:
// clear options global $wpdb; $plugin_options = $wpdb->get_results( "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%b2bking%'" ); foreach( $plugin_options as $option ) { delete_option( $option->option_name ); } // clear all custom posts $post_types = array('b2bking_custom_role', 'b2bking_custom_field', 'b2bking_group', 'b2bking_rule', 'b2bking_offer', 'b2bking_conversation'); foreach ($post_types as $type){ $allposts= get_posts( array('post_type'=> $type,'numberposts'=>-1) ); foreach ($allposts as $eachpost) { wp_delete_post( $eachpost->ID, true ); } } // clear user metadata $wpdb->query("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE '%b2bking%'"); // clear product metadata $wpdb->query("DELETE FROM $wpdb->postmeta WHERE meta_key LIKE '%b2bking%'");
Hi there,
Thank you for letting us know about the notices.I checked and the strings you mention here are not part of the free plugin version here on www.ads-software.com, they are only in the Premium version. Therefore unless I am somehow wrong, updating the plugin version here would not help you.
Therefore I want to ask you to please open a support ticket with us for the premium version at https://webwizards.ticksy.com Our team will be happy to assist you there and send you an updated plugin version with fixes.
Also please make sure to be using the latest version from codecanyon.net as notices and errors are constantly fixed with each update.
Kind regards,
StefanI am sorry to hear this, but we have not received any support requests from you.
From what you have told us on Facebook, this is not about the plugin B2BKing, this is about an entirely different plugin, that you purchased from WooCommerce.com.
You also mentioned in the review that you “spent 2 hours online with woocommerce”
B2BKing is not and has never been sold on WooCommerce.com
B2BKing will give the user the highest discount (best price) that their user has access to.
For example if the user is a B2B user, part of the ‘VIP’ group and there are 3 discounts configured:
– 30% for all B2C users
– 20% for all B2B users
– 10% for the VIP group
the user would get the 20% discount, because they are also a B2B user, so 20% is the best available discount to them.Hope that makes sense,
- This reply was modified 3 years, 6 months ago by WebWizards.