Display dokan vendor name on Woocommerce single product pages

前端 未结 2 1877
别跟我提以往
别跟我提以往 2021-01-01 06:20

With woocommerce I am using Dokan plugin and I am trying to display the vendor name, rating and vendor location on single product pages.

I tried this code to display

2条回答
  •  [愿得一人]
    2021-01-01 06:37

    This should do it:

    $vendor_id = dokan_get_seller_id_by_order( $order->ID );
    $vendor_data = get_user_meta( $vendor_id );
    echo $vendor_data["first_name"][0]." ".$vendor_data["last_name"][0];
    

提交回复
热议问题