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
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];