Forum Replies Created
- AuthorPosts
Sushobhan
KeymasterHi,
Previously I posted a reply with a snippet but it was not working. So I removed my reply. I’ll do some more research. The problem is WooCommerce doesn’t support this structure, see here- https://wordpress.org/support/topic/woocommerce-product-permalinks-custom-base/
Will Let you know.
Thanks!Sushobhan
KeymasterPlease write in your native language. We will use a translation service. Right now whatever option you are using for translating your message, is doing a terrible job. We can’t figure out the issue at all.
Thank You!Sushobhan
KeymasterIt should work without the confirmation. I have again tested it on my local setup. Please check if you have pasted the complete code or not. Where you are pasting the code in functions.php or using the snippet plugin? Please send me a snapshot of the portion of the code.
Alternatively, could you please provide me a temporary ftp along with a vendor access to debug this?
Thank You!Sushobhan
KeymasterThere is an alternative though, which is supported by default.
You can have this behavior if you create 2 separate membership plans with same capability.
– Free trial (say 30 days)
– Paid membership plan (no free trial)
While creating the free trial plan enable One Time Subscription checkbox, like this- https://imgur.com/48WPnZA . So now if a user completes their trial period or unsubscribe before the trial ends, they will not be able to again subscribe under free trial plan.
But if you want to set both trial and paid in a single membership then it will be a paid customization
Thank You!Sushobhan
KeymasterThis reply has been marked as private.Sushobhan
KeymasterHi,
Sorry, this is no small tweak. Either you have to figure out the logic or hire some professional service.
We provide customization services as well but at this moment none of our resources are available.
Thank You!Sushobhan
KeymasterHi,
From which test vendor I can purchase a product to test? Make sure the test vendor set his/her Preferred Payment Method as Bank Transfer and fill out the bank details.
Thank You!Sushobhan
KeymasterHi,
I think I got your concern this time. You are referring to one string in Loco translate. It has nothing to do with plugin activation status.
Loco Translate shows all the translatable text, if you haven’t activated the license then you will see a warning message at the top of your wp-admin page like this- https://imgur.com/PlxWhvF
See the wording of this message, now like any other texts, I can translate the text of this message with Loco translate. That’s why it is showing under loco translate scrren.
I hope this answers your question.
Thank You!Sushobhan
KeymasterThis reply has been marked as private.Sushobhan
KeymasterThis reply has been marked as private.Sushobhan
KeymasterThis reply has been marked as private.Sushobhan
KeymasterHi,
Please edit the country portion of the previous code like the following-if ( isset( $fields["vendor_csd_return_country"] ) ) { $new_fields["vendor_csd_return_country"] = $fields["vendor_csd_return_country"]; $new_fields["vendor_csd_return_country"]["value"] = 'JP'; $new_fields["vendor_csd_return_country"]["type"] = 'hidden'; }It should do the trick. Sorry I can’t test this on my side now. Let me know if that helps.
Thank You!Sushobhan
KeymasterThis reply has been marked as private.Sushobhan
KeymasterHi,
Is this vendor is assigned to any group? I yes then you need to change the capability from that group. Group settings got higher priority over general capability settings. If you disable Policies capability then, Policy tab will not show to your vendors dashboard. It will be visible on your admin dashboard though!
Thank You!May 7, 2020 at 12:22 am in reply to: Assign delivery Boy only for whole order not every item #127689Sushobhan
KeymasterHi,
Yes you can change the text ‘Mark Shipped’ using Loco Translate. It’s inside ‘wc-frontend-manager-ultimate’ text domain (WCFM Ultimate plugin).
Thank You!Sushobhan
KeymasterNo, we don’t have separate tones for different type of notification. Thank You!
Sushobhan
KeymasterPlease send me the ordering of the fields to suggest you the right way. Thanks!
Sushobhan
KeymasterHi,
I’m failed to understand the issue here. From your screenshot it seems the ultimate license is registered and working. So what is the issue here? And what about the loco translate snapshot? How it is relevant with the license snapshot?
Let me know!
Thank You!Sushobhan
KeymasterHi,
You can do so, using the following snippet, final result will be like this- https://imgur.com/PDkUSqYadd_action( 'wcfm_dashboard_after_username', function($id) { if ( wcfm_is_vendor() ) { $external_url = 'https://myprivateurl.com'; echo "<div class='external_url'><a href='{$external_url}' target='_blank' rel='noopener noreferrer'>{$external_url}</a></div>"; } }, 100 );Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks!Sushobhan
KeymasterGlad to know that 🙂
Sushobhan
KeymasterHi,
Yes the plugin is compatible with WCFM Marketplace. And there are no reported issue. Also it’s a WooComemrce plugin and they have “30-day money-back guarantee”- https://woocommerce.com/refund-policy/
Thank You!Sushobhan
KeymasterHi,
For that your vendor needs to add Local pickup shipping method enabled under their shipping zone settings. Also they will need to enable Delivery Time option under Settings >> Delivery Times tab.
So now when a customer place an order he will see all the order related information including the delivery time slot like this- https://imgur.com/5XHHty6
And vendor can see those details in their order list page like this- https://imgur.com/TWSoqGU
Thank You!Sushobhan
KeymasterWell, hiding inventory tab from vendors can be easily done from WCFM admin dashboard >> Capability page see here- https://imgur.com/lUQT1KG. But setting all the products inventory values via code requires customization. You can use the following snippet (will not work on variable product type) to get the idea-
add_filter('wcfm_product_data_factory', function($data) { $data['manage_stock'] = true; $data['backorders'] = 'no'; $data['stock_quantity'] = 1; return $data; });Add this code to your child theme’s functions.php
In case you do not have child theme then add code using this plugin – https://wordpress.org/plugins/code-snippets/
Let me know how this goes.
Thanks!Sushobhan
KeymasterHi,
This is not an issue but the expected behavior. But, what you want is a custom behavior and can only be achieved via customization.
Thank You!Sushobhan
KeymasterHi,
Admin can assign delivery boy to vendor orders. Admin being a super user can do everything a vendor can do.
Though some part of your query is not possible right now, like auto assignment. As of now, your admin has to manually manage these things.
Thank You!- AuthorPosts