WebWizards
Forum Replies Created
-
I am not sure what causes it but our team can check it directly if you’d like.
For that, can you please open a ticket with us at https://webwizards.ticksy.com/ and provide us with a backend site or staging site access so we can check ? – I ask since I understand you are using our Pro plugin as well.
If your support expired, it’s fine, you can open it in the “pre-sales” categories.
Hi there,
Thank you for the easy to understand video, appreciate it.
I think you can solve the problem by adding this PHP code snippet to your site:
add_filter(‘b2bking_display_both_cache_disable’,’__return_false’);
It can be added to functions.php or to any code snippets plugin. It would not have any effects on site performance.
Please check and let me know if that does it.
Hi there!
Thank you for the interest in our plugin : )
I made a plugin update now (1.5.71) that I think fixes that issue with the twentytwentythree theme – also fixes the ‘Store details’ issue with Astra.
For some themes we found that $content has to be echoed, with others returned, I haven’t been able to find a consistent way to make it work with all themes, but the current way seems to work with most (e.g. themes such as Storefront, Electro, Woodmart, and most themes on themeforest should work fine).
We would love any contribution to the plugin – you can use our page here:
Thank you so much for the kind words!
Hi there,
This seems to be an issue with the Pro plugin as Offers are a pro-only feature.
The first thing to check, please make sure that you already have the latest version of B2BKing Pro. That is currently v. 4.5.40.
If you do not have B2BKing Pro 4.5.40, please make sure to update as that might resolve your issue.
Furthermore, if updating does not solve it, please try to deactivate all other site plugins as it could be a plugin conflict.
If it does not solve your issue, our team can look into it directly to see what the problem is and troubleshoot it for you,
For that, kindly please open a ticket with us at https://webwizards.ticksy.com which is our support platform for the pro plugin.
Kind regards,
Thomas
Thank you for clarifying,
I was able to test on an Android device with Chrome but did not see the same issue. Therefore I am not sure why specifically you are seeing that: it may have to do with a specific software version / distribution / specific keyboard on your device.
We will keep an eye on it, but at least so far I am not able to replicate this.
Hi there,
Thanks for using our plugin,
I can see the issue in your recording. I tested with an iOS device on the demo, but do not see that same problem.
Are you testing with an Android device? What browser are you using, is it Google Chrome?
Thank you.
Thank you very much for your kind review.
Thank you so much for your kind review : )
I see that plugin is able to hide pages. Therefore it should be able to also hide the login / registration page.
I’m not entirely sure whether it would have any issue with hiding the vendor dashboard, but my guess is it should be able to do it.
Glad to hear that resolved it,
If you like the plugin / support, we would much appreciate if you considered leaving a rating: https://ww.wp.xz.cn/plugins/b2bking-wholesale-for-woocommerce/#reviews – it’s a great help to us,
Have a nice day,
Hi there,
Currently there’s no option for sequential invoicing. Thank you for your feedback and we will consider it for future updates,
Regarding catalog mode, even with the B2BKing plugin it’s not currently possible to have quotes only on vendors’ products – that feature would apply to all products.
You can easily make products unpurchasable with a code snippet, but that still doesn’t add ‘quote request’ functionality.
There is no membership feature in the free version as it’s a pro-only module.
Hi there,
If you cannot withhold money from the seller, you may be able to use the plugin’s Stripe Split Pay module: https://woocommerce-multivendor.com/docs/marketking-stripe-connect-automatic-split-payments-refunds-3d-secure-2-stripe-integration/ – through this module, each vendor receives their money directly.
You can configure VAT and VAT classes – each vendor can choose the VAT class of each product.
I am not aware of any specific way to make each vendor’s invoices be sequential. It may be possible with custom coding.
By ‘catalog mode’ do you mean not allowing direct purchases, instead only allowing quote requests? You could achieve that through using MarketKing plus our B2BKing B2B plugin. For info on that integration, you can see: https://woocommerce-multivendor.com/docs/wholesale-b2b-b2bking-integration/
The plugin also has a feature where vendors can pay a subscription to be able to sell their products: https://woocommerce-multivendor.com/docs/vendor-membership-packages/
Regarding registration there are several options:
– You could set up ‘manual approval’ to manually approve each application
– You could allow vendors without a membership to be able to add 0 products, and only allow products once a membership is paid.
Hi there,
With MarketKing, it’s possible to restrict the file size allowed for each image or file. By default that limit is set to 1MB, but you can modify it by adding this PHP code snippet to your site:
add_filter('marketking_vendor_upload_file_size', function($size){ return 1048576; }, 10, 1);That number represents 1 MB in bytes. You can for example replace it with 104857 to set the limit to 100KB.
To make the plugin automatically remove product images when the products are deleted by a vendor, you can add this PHP code snippet to your site:
add_action('wp_trash_post', function($post_id){ $product = wc_get_product( $post_id ); if ( !$product ) { return; } $featured_image_id = $product->get_image_id(); $image_galleries_id = $product->get_gallery_image_ids(); if( !empty( $featured_image_id ) ) { wp_delete_post( $featured_image_id ); } if( !empty( $image_galleries_id ) ) { foreach( $image_galleries_id as $single_image_id ) { wp_delete_post( $single_image_id ); } } }, 10, 1);These snippets can be added to the functions.php file of your child theme.
Hi there,
I checked your site and I see this can be resolved by adding the following CSS to the site:
form.woocommerce-form.woocommerce-form-register.register { height: initial !important; min-height: 493px !important; }That can usually be added to Appearance – > Customizer -> Additional / Extra CSS.
Let us know if that solves it,