Forum Replies Created
- AuthorPosts
- September 17, 2018 at 2:36 pm in reply to: Membership expiration bug in WCFM – Marketplace + Manual Renewal button ? #31813d-n-13Participant
Hi,
I’ll check and update you.
Issue Note : In WCFM Dashboard > Vendors > Vendor X > Membership. the Update button for memberships will not just change and update memberships, it will also extend membership.., can we have 2 buttons ? 1 for change & 1 for extend ? or just change as we can extend manually.
I just tried to change membership plan, it changed the plan but it also added days on the previous plan days ….. đ
BTW : love the renew subscription button for vendors /thumbs up
Thank You for the amazing work,.
September 17, 2018 at 2:25 pm in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31811d-n-13Participant=============
1- Adding if statement condition if order has more than 1 vendor then donât apply this function. (If from 1 vendor then orders are synced, if multiple vendors then orders arenât synced.)
â I canât say itâs impossible but then it will be hugh resource consuming process. Are you comfortable in this? Then I will tweak the code as this.
=============How high ? I would like to test it out, hopefully it’s not very high , I cannot afford having many employees just checking orders.
September 17, 2018 at 2:20 pm in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31808d-n-13ParticipantHi,
I’m in a business trip for few days, I just want to comment on 4 real fast, and the rest for later.
“â Well, for vendor refund main order not refunded, only particular product from that vendor refunded. So main order still can have âcompletedâ status for other items.”
Can you tell me the process of canceling/refunding as admin ? and If i complete the order as admin how can I prevent vendor from withdrawing commission from canceled/refunding orders.
September 14, 2018 at 12:06 pm in reply to: Membership expiration bug in WCFM – Marketplace + Manual Renewal button ? #31633d-n-13ParticipantHi,
The test vendors you added them have not been expired. check screenshot : https://www.dropbox.com/s/63rtzme4lsljzgv/membership%20expiration%202.JPG?dl=0
Thank You
d-n-13ParticipantHi,
Not at all, please take your time.
and please let me know if you find a solution.
Thank you
d-n-13ParticipantThis reply has been marked as private.d-n-13ParticipantHi,
1- Store list doesnât appear correctly in RTL : https://www.dropbox.com/s/gtuudi7k5o720n8/store%20list%20wpml.JPG?dl=0
* Resolved
2- (Please add Wizard WPML support) When registering in 2nd language RTL it will only show English Wizard : https://www.dropbox.com/s/lu2y2is0qnv5zgg/wizard%20wpml.JPG?dl=0
* I translated the wizard and Registered new Ar vendor, it won’t show Translated Wizard. but after finishing the wizard it will send me to Ar Dashboard so that part is working.
3- If vendor register in 2nd lang it will send him to Default LTR En Dashboard instead of 2nd lang RTL Ar
* Resolved
4- [This is not a big deal and only happens in wp-admin] wcfm links on top bar shows some links for En and some for Ar, issue doesnât happen in frontend pages : https://www.dropbox.com/s/tromnicr5takuxm/wp-admin%20links.jpg?dl=0
* Resolved
Thank You.
d-n-13ParticipantHi,
You’re super fast!
it is 99% prefect, there is small issue in rating and badges in store list. Screenshot : https://www.dropbox.com/s/ktmpe3eisbso1w4/store%20list%20stars.JPG?dl=0
I tried to adjust float to right but it is still not perfect : https://www.dropbox.com/s/vvjgpk5wrgr3ttd/store%20list%20stars%202.JPG?dl=0
I’m going to test registration & wizard and i’ll get back to you if there is anything.
d-n-13ParticipantHi,
Okay I think this will work, I mean.. no other plugin doing t better than yours anyways.
I’ll wait for 1,4,5 fix next update.
Thank you
September 12, 2018 at 10:01 am in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31455d-n-13ParticipantI wanted this to be in a different Post.
4- Imagine unsynced orders (Default way) – If only 1 vendor complete the order, and the other vendor cancel or refund or didn’t complete it for any reason, How can I manage this ? How can i complete it so Vendor A can withdraw ?
Thank You
September 12, 2018 at 9:58 am in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31454d-n-13ParticipantOkay Sir, I just did many testing with sync and unsync and you make a lot of sense.
But I believe there is a middle ground for this if you don’t mind . I am using the following code you provided for me to sync orders :-
================
/* Sync Orders from Vendor Side */
function wcfmmp_vendor_order_status_updated_custom( $order_id, $vendor_id, $order_status ) {
global $WCFM;if ( wc_is_order_status( $order_status ) && $order_id ) {
$order = wc_get_order( $order_id );
$order->update_status( str_replace(‘wc-‘, ”, $order_status), ”, true );// Add Order Note for Log
$shop_name = $WCFM->wcfm_vendor_support->wcfm_get_vendor_store_by_vendor( $vendor_id );
$wcfm_messages = sprintf( __( ‘<b>%s</b> order status updated to <b>%s</b> by <b>%s</b>’, ‘wc-frontend-manager’ ), ‘#‘ . $order_id . ‘‘, wc_get_order_status_name( str_replace(‘wc-‘, ”, $order_status) ), $shop_name );
$comment_id = $order->add_order_note( $wcfm_messages, ‘1’);
if( wcfm_is_vendor() ) { add_comment_meta( $comment_id, ‘_vendor_id’, $vendor_id ); }$WCFM->wcfm_notification->wcfm_send_direct_message( -2, 0, 1, 0, $wcfm_messages, ‘status-update’ );
do_action( ‘woocommerce_order_edit_status’, $order_id, str_replace(‘wc-‘, ”, $order_status) );
do_action( ‘wcfm_order_update_status’, $order_id, str_replace(‘wc-‘, ”, $order_status) );
}
}
add_action( ‘wcfmmp_vendor_order_status_updated’, ‘wcfmmp_vendor_order_status_updated_custom’, 50, 3 );/* Sync Orders from Vendor Side */
/* Sync Orders from Vendor Side 2 */
function wcfmmp_order_status_display_custom( $status_display, $the_order ) {
$status_display = ‘<span class=”order-status tips wcicon-status-‘ . sanitize_title( $the_order->get_status() ) . ‘ text_tip” data-tip=”‘ . wc_get_order_status_name( $the_order->get_status() ) . ‘”></span>’;
return $status_display;
}
add_filter( ‘wcfm_order_status_display’, ‘wcfmmp_order_status_display_custom’, 50, 2 );/* Sync Orders from Vendor Side 2 */
================
Now, is the following possible ?
1- Adding if statement condition if order has more than 1 vendor then don’t apply this function. (If from 1 vendor then orders are synced, if multiple vendors then orders aren’t synced.)
2- If order has more than 1 vendor add extra icon so admin can pay attention to this from the order list and complete it manually after checking order notes if all vendors completed them.
3- It is really good way showing in order notes if vendors want to complete their orders (Screenshot : https://www.dropbox.com/s/qyektl5e1o41h75/order%20notes.JPG?dl=0 ) , so maybe add link to the order ID in the withdraw (not needed solution, just for fast reference.) Screenshots : https://www.dropbox.com/s/p4r19mb0n6wmvq6/order%20id%20link%20for%20admin.JPG?dl=0 & https://www.dropbox.com/s/u60e9b2g397xg00/order%20id%20link%20for%20vendor.JPG?dl=0
I think this is really good way and other wcfm users can take advantage of it, it will make admin life so much easier.
Thank You for your kind support.
d-n-13ParticipantHi,
Good news,
regarding point 3
(3- Shipping By Country donât have âEverywhere Elseâ option under countries, only have âEverywhere Elseâ under states.)
I have some vendors that wish to ship to all the world, this cannot be done easily using shipping by country ? for their situation they will have to do shipping by zone right ?
September 12, 2018 at 7:56 am in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31434d-n-13ParticipantHi,
I’m sorry I’m going to bother you with this.
So if there is an order with 2 products from Vendor A and Vendor B. And then Vendor A complete the order but Vendor B did not complete order. And then admin will receive notification that Vendor A completed his order.
Now what is the admin suppose to do ? If admin completes main order then B can withdraw too even tho he didn’t complete his order, right ? so it is the same issue synced or not synced orders ? forgive me I am a bit confused, how can I manage and accept withdraws easily while knowing some vendors may take advantage of this issue intentionally or unintentionally ?
Thank You
d-n-13ParticipantHi,
Regarding the high CPU usage I found out it was caused by WP Server Stats plugin which calls Ajax every 1s while admin is in wp-admin page.
Shipping & Membership issues have their own Topics.
Everything else here is resolved. You can close the topic sir.
Thank You.
September 12, 2018 at 6:13 am in reply to: WPML root page causes (double slash //) on vendor page url #31416d-n-13ParticipantThis is resolved, Thanks!
September 12, 2018 at 6:12 am in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31415d-n-13ParticipantYou’re amazing, Thanks!
This is resolved
d-n-13ParticipantThis has been resolved in the latest update.
September 12, 2018 at 5:42 am in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31409d-n-13ParticipantHi,
Thanks but the rating in shop page is not working now, it was working previously : https://www.dropbox.com/s/tf9ihm9zc32tclb/stars%20in%20shop%20page.JPG?dl=0
d-n-13ParticipantHi,
Any updates ?
Thank You
d-n-13ParticipantHi,
You can use Booster plugin to decide payment method by shipping gateway as Admin, but it will only works with the main shipping methods (Flat Rate / Free Shipping / Local Pickup / Store Shipping from WCFM Marketplace) and will not work with sub-shipping methods under “Store Shipping” (“Flat Rate / Free Shipping / Pickup”) because they’re all under 1 main shipping method which is “Store Shipping”.
Check booster module here : https://booster.io/features/woocommerce-payment-gateways-by-shipping/?utm_source=module_documentation&utm_medium=module_button&utm_campaign=booster_documentation
You can also hide payment methods by categories which is even better, using the same Booster plugin.
Thank you
d-n-13ParticipantCOD is Payment method, not shipping method.
September 11, 2018 at 12:14 pm in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31340d-n-13ParticipantAbout the rating stars, it always shows full rating even if it’s 3.8 or even if no reviews. https://www.dropbox.com/s/8krgwe4srj9t42r/stars%20rating%20in%20vendor%20page.jpg?dl=0
September 11, 2018 at 11:13 am in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31332d-n-13ParticipantHi,
Issue : As you know if a customers orders from multiple vendors, and one of the vendor completes his part, then the other vendor can withdraw balance without completing his order. ( Note : I have vendors and admin orders synced )
â Now thatâs the reason we keep Admin and Vendor order status separate and they are not synced!
* So if I change it back to default (not synced just admin notified) then if admin complete one of the two orders then both vendor still can withdraw, No ?
Thank You
September 11, 2018 at 11:07 am in reply to: About the store vendor info at single product page #31331d-n-13ParticipantHi
”
This will look like this â https://ibb.co/eD65zpThank You
”– Looks great !
”
It will be better than current display position of vendor info.
”– For me I would like to have both.
Thanks
d-n-13ParticipantThanks
- AuthorPosts