WC Lovers

WooCommerce Frontend Manager - Multivendor marketplace vendor dashboard

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Forum Replies Created

Viewing 25 posts - 201 through 225 (of 449 total)
  • Author
    Posts
  • d-n-13
    Participant

    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,.

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31811
    d-n-13
    Participant

    =============

    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.

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31808
    d-n-13
    Participant

    Hi,

    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.

    d-n-13
    Participant

    Hi,

    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

    in reply to: WPML RTL related #31632
    d-n-13
    Participant

    Hi,

    Not at all, please take your time.

    and please let me know if you find a solution.

    Thank you

    in reply to: WPML RTL related #31548
    d-n-13
    Participant
    This reply has been marked as private.
    in reply to: WPML RTL related #31545
    d-n-13
    Participant

    Hi,

    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.

    in reply to: WPML RTL related #31460
    d-n-13
    Participant

    Hi,

    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.

    in reply to: Shipping issue per state vs. country issue. #31456
    d-n-13
    Participant

    Hi,

    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

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31455
    d-n-13
    Participant

    I 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

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31454
    d-n-13
    Participant

    Okay 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.

    in reply to: Shipping issue per state vs. country issue. #31449
    d-n-13
    Participant

    Hi,

    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 ?

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31434
    d-n-13
    Participant

    Hi,

    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

    in reply to: Update 1.0.5 bugs #31420
    d-n-13
    Participant

    Hi,

    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.

    in reply to: WPML root page causes (double slash //) on vendor page url #31416
    d-n-13
    Participant

    This is resolved, Thanks!

    in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31415
    d-n-13
    Participant

    You’re amazing, Thanks!

    This is resolved

    in reply to: Vendor Registration Validation #31410
    d-n-13
    Participant

    This has been resolved in the latest update.

    in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31409
    d-n-13
    Participant

    Hi,

    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

    in reply to: Shipping issue per state vs. country issue. #31408
    d-n-13
    Participant

    Hi,

    Any updates ?

    Thank You

    in reply to: Payment based on Shipping Method #31363
    d-n-13
    Participant

    Hi,

    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

    in reply to: Payment based on Shipping Method #31353
    d-n-13
    Participant

    COD is Payment method, not shipping method.

    in reply to: Vendor Page Layout + Translated Categories duplication issue.. #31340
    d-n-13
    Participant

    About 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

    in reply to: Withdrawal Requests Enhancment / Multiple Vendors Order. #31332
    d-n-13
    Participant

    Hi,

    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

    in reply to: About the store vendor info at single product page #31331
    d-n-13
    Participant

    Hi


    This will look like this – https://ibb.co/eD65zp

    Thank You

    – Looks great !


    It will be better than current display position of vendor info.

    – For me I would like to have both.

    Thanks

    in reply to: Vendor Registration Validation #31330
    d-n-13
    Participant

    Thanks

Viewing 25 posts - 201 through 225 (of 449 total)