WebWizards
Forum Replies Created
-
Thank you for using our plugin,
In MarketKing, the “about me” page is the “Vendor Details” tab. For example you can see the Vendor details tab here in our demo: https://demomk.wpbay.co/stores-list/walmart/info
By default, every store page under the “Stores List” page would have this tab.
Are you not seeing it, or can you give us more details about your question? A screenshot might also help.
Hi there,
Thank you for using MarketKing,
Regarding the Become a Vendor page, this is a page that you choose in MarketKing -> Settings -> Registration: https://prnt.sc/bzR–QDHRG41
I’m not sure why the plugin was not able to initialise this page during plugin activation – but it sounds like for some reason it wasn’t able to. Perhaps this page is saved as a Draft, not published, or something of that nature. I advise you to check which page is selected in MarketKing -> Settings -> Registration – you can choose any page there – make sure it’s a page that is published and visible.
Regarding the logout url issue, please try to update to MarketKing Core 1.4.22 which I just released – I believe it may be able to fix it.
Customers / users would be expected to register via the WooCommerce my account page. This registration can be enabled in WooCommerce -> Settings -> Accounts & Privacy.
Hi there,
Thanks for using our plugin!
We have added this but indeed it’s currently only in the pro version of the plugin ( https://i.imgur.com/wSBukJV.png ). We’ll be looking to add it to core version as well,
Let us know if there’s anything we can help with,
Have a nice day,Appreciate the info!
Haven’t had a chance to use FSE yet – usually we use Oxygen Builder which I think is quite similar (headers, footers, pages can be built from scratch as well as reused).
Anyway, of course, if that’s where the market’s heading we’ll have to update our plugins as well,
Have a great week ahead!
Thanks for the feedback and info!
I did test and got the same results you described (stores list appears above head, works if shortcode is used instead).
Our plugin uses ‘the_content’ and in_the_loop() to display that page – probably the FSE architecture works differently. Since FSE is still in beta, it’s probably best for us to wait on this, as the core devs might solve it themselves in next updates,
Thank you so much!
Hi there,
I tried but I’m not able to replicate this issue on my end.
Is this a temporary glitch or do you always have this problem when you open the dashboard?
If you would like, we can check the issue directly. It would be best if you could share a backend login to your site or a staging clone site with us. You can do so by opening a private ticket at https://webwizards.ticksy.com – if you’re using MarketKing Core only, you can open it in the Pre-Sales section.
Hi there,
Thank you for the feedback. I checked and did find that deprecated function in the code – I’ve now released an update for MarketKing Core that resolves this.
Please update to MarketKing 1.4.05 and let us know if you still see any issues,
Hi Daniel,
Thanks for using our plugin,
Are you using B2BKing Pro, or just the free B2BKing plugin?
I checked but I do not find ‘key1’ and ‘key2’ anywhere in our code – so I believe you are probably using an outdated plugin version. Please make sure to update to the latest versions.
The latest versions are:
B2BKing Core: 4.2.33
B2BKing Pro: 4.3.28Hi there,
Usually when using a multi-currency plugin, what happens is that both that plugin and our plugin try to modify the final price and a conflict results. Therefore the only way these kind of plugins can work with ours is if there is a special integration between them.
Currently we do have some built-in integrations with the free WOOCS plugin: https://ww.wp.xz.cn/plugins/woocommerce-currency-switcher/
I advise you to try use the free version of WOOCS and see if that works for you.
Kind regards,
StefanHi Tania,
I’m not sure if you could use other affiliate plugins together with ours – I guess it depends on your specific goals but we don’t have experience with using 3rd party affiliate plugins unfortunately,
Kind regards,
StefanGlad to hear that appears resolved to you,
It is fine if you block automatic updates for B2BKing – no problem at all.
Have a nice day,
Hi Tania,
Thank you for getting in touch,
I understand that you’re looking for some kind of affiliate system where if a user refers a vendor, they get commissions based on that vendor’s sales?
There’s no feature in MarketKing for this yet. We’ll be looking at adding something like this in future updates as an integration with our SalesKing plugin https://1.envato.market/SalesKing – at the moment SalesKing can only be used to get a commission for referring customers, but not for referring vendors,
Hi there,
We will check shortly and I will get back to you here in this ticket in the next few hours: https://webwizards.ticksy.com/ticket/3125638/
Please reply in the ticket above (I think you can reply there even if support expired). It is easier for us to keep things organized this way,
Hi there,
I believe that’s achievable with a code snippet in functions.php:
add_action('woocommerce_created_customer', function($user_id){ $group_id = 1234; $user_status = get_user_meta($user_id, 'b2bking_account_approved', true) ; if($user_status === 'no'){ b2bking()->update_user_group($user_id, $group_id); $user_obj = new WP_User($user_id); $user_obj->add_role('b2bking_role_'.$group_id); } }, 10000, 1);You would need to change 1234 with the B2B group ID. To get that, go to the groups page , click on the group, and the number in the URL such as ?post=123 is the ID.