Okay
  Public Ticket #3339491
Shipment Plugin
Closed

Comments

  •  10
    David started the conversation

    Hi,

    I am in the process of setting up shipment options for vendors and found a plugin DelyVa (https://delyva.com/my/courier-service-malaysia/) that is supported in the country I am in (Malaysia). However, while I was in the process of setting it up, I was saddened to see that MarketKing was not in the dropdown list for Multi-vendor system as shown in the image attached but has Dokan and WCFM which I feel are not as good as superior MarketKing.

    Therefore I emailed Deliva to see if MarketKing is supported and they replied with the following  

    "Currently, our plugin does not support marketking. However if you have a developer familiar with MarketKing and a test/development site, we can joint develop the plugin to support marketking."

    As you guys have been so awesome and helpful, I was wondering whether it would be possible to get MarketKing onto the dropdown list?

    If not, could you recommend any plugin that would work with MarketKing, so I could have a look at and see if it suitable in the country I am in?

    Many thanks,

    Kind Regards

    Attached files:  DelyVa.JPG

  •  10
    David replied

    Hi,

    A little update from the Delyva team, they have emailed me this morning with the following,

    "We checked the plugin and documentation but unable to find required function to get vendor store information to get store address, vendor contact name, phone number, etc.

    We checked the documentation and GitHub:

    Are there any available documentation that could help?

    Many Thanks

    Kind Regards,

    David


  •  1,906
    WebWizards replied

    Hi David,


    Please forward the following information to the developers:


    The plugin uses the WooCommerce meta fields for the vendor's address, phone, company, etc.

    You can use the following code to get the relevant info:

    $address1 = get_user_meta($vendor_id, 'billing_address_1', true);
    $address2 = get_user_meta($vendor_id, 'billing_address_2', true);
    $city = get_user_meta($vendor_id, 'billing_city', true);
    $postcode = get_user_meta($vendor_id, 'billing_postcode', true);
    $state = get_user_meta($vendor_id, 'billing_state', true);
    $country = get_user_meta($vendor_id, 'billing_country', true);
    $company = get_user_meta($vendor_id, 'billing_company', true);
    $phone = get_user_meta($vendor_id, 'billing_phone', true);
    // store name
    $store_name = get_user_meta($vendor_id, 'marketking_store_name', true);
    // store url
    $store_url = get_user_meta($vendor_id, 'marketking_store_url', true);
    

    If there is anything else needed or if we can assist with anything, please let us know.


    Kind regards,

    Stefan

  •  10
    David replied

    Hi Stefan,

    Thanks for the provided code, Ill pass it on to them. 

    Do you have an email that I could pass on to them so that they could contact you directly?

    Kind Regards,

    David

  •  1,906
    WebWizards replied

    Sure, please use our email at [email protected] or you can also link this ticket directly https://webwizards.ticksy.com/ticket/3339491/ as it is public.

  •  10
    David replied

    Awesome! I have passed on the details.

    Thanks Stefan