WebWizards
Forum Replies Created
-
Thank you so much : )
Hi there,
A user account can only have a single store.
If someone wanted to open multiple stores they would have to create separate user accounts for each store.
Thank you for the feedback,
We are looking to add support for more plugins, so more integrations will come soon.
We will look to get in touch with ALD as well,
Hi Martin,
I am truly sorry to hear you had a negative experience trying out the plugin,
I looked over our page here https://ww.wp.xz.cn/plugins/b2bking-wholesale-for-woocommerce/ and there was a line mentioning registration under ‘free plugin features’. Maybe that was misleading to you – if so, that’s our mistake (though it’s not our intention to do that). I have removed that line now from the description.
I hope it’s now clearer that the registration is a premium feature: https://prnt.sc/ckd_i1k6Xmbd
Other than that, I’d love to send you the premium version as a free trial so you can try it out. I will now send you a message via the contact form on your website about it – please check that out.
Kind regards,
Stefan
Hi there,
Thanks for getting in touch,
At the moment I’m afraid there are no specific integrations with those plugins so most likely they wouldn’t fully work for vendors,
Hi there,
To add a link to each store on the archive page, you can add this PHP code snippet to your site:
add_action( 'woocommerce_after_shop_loop_item_title','sold_by' ); function sold_by(){ global $post; $product_id = $post->ID; $vendor = marketking()->get_product_vendor($product_id); if (empty(get_query_var('vendorid'))){ // do not apply on vendor store pages echo 'Vendor: <a href="'.marketking()->get_store_link($vendor).'">'.marketking()->get_store_name_display($vendor).'</a><br>'; } }Should display as https://prnt.sc/rjZ7k4pQRKTN
Thank you so much!
Glad to hear you got that resolved,
Regarding the other question, it would be possible with some discount rules, but unfortunately it’s not possible with the specific rule you have there.
If you have a discount rule with this checkbox enabled, it’s possible: https://prnt.sc/lSlt7q7o_bee
But that checkbox cannot be enabled with ‘value’ conditions. like “cart value > 1000”
Hi there,
I tested that locally on a test site with an identical rule, but that seems to be working for me.
Have you tried it without the >$1000 condition?
The issue may have to do with tax: please try with a higher number like 2000 in Cart. Depending on your tax settings that could be 1000 with or without tax.
Hi there,
We’ve been taking steps rewriting some of our code to add HPOS compatibility, but we’re not quite there yet.
At the moment it’s still not compatible, but it will be later on, perhaps later this year.
Hi there!
Thanks for using B2BKing!
Indeed, we don’t have all the same buttons in other themes. Another problem is how a user could search for products and add new products to an existing list.
In the ‘Classic’ theme you search for a product and then select it. In the cream theme, the search results list is the list. Search results would overwrite the list.
We will consider more options there and we’re glad that you like the Cream design!
Hi there,
This is possible only in the plugin’s premium version. It’s the one here: https://kingsplugins.com/woocommerce-multivendor/marketking/
The free plugin supports Simple products.
Forum: Plugins
In reply to: [WooCommerce] Add the Vendor nameHi there,
You can achieve that by adding this PHP code snippet to your site:
add_action( 'woocommerce_after_shop_loop_item_title','sold_by' ); function sold_by(){ global $post; $product_id = $post->ID; $vendor = marketking()->get_product_vendor($product_id); if (empty(get_query_var('vendorid'))){ // do not apply on vendor store pages echo 'Vendor: '.marketking()->get_store_name_display($vendor); } }Should display as follows: https://prnt.sc/rjZ7k4pQRKTN
Thank you very much, that is really helpful!
I pushed an update 1.5.19 to MarketKing Core now, can you please see if that update solves it for you?
It would be helpful if you could make some small plugin code edits to help us track it down.
If that’s possible, please try the following:
Open the marketking-multivendor-marketplace-for-woocommerce/includes/class-marketking-core.php file and find this line of code:
$marketking_public = new Marketkingcore_Public();Please try to “comment that out”, meaning to add “//” to the beginning of the line.
// $marketking_public = new Marketkingcore_Public();After saving the file, please check and let us know if the issue still occurs.