5

使用 woocommerce,我正在使用 Dokan 插件,我试图在单个产品页面上显示供应商名称、评级和供应商位置。

我试过这段代码来显示供应商名称,但没有运气:

//show store name
add_action( 'woocommerce_single_product_summary', 'show_store_name', 20 );
function show_store_name() {
    printf( '<b>Seller Name:</b> <a href="%s">%s</a>', dokan_get_store_url( $author->ID ), $store_info['store_name'] );
}

任何帮助表示赞赏。

4

2 回答 2

6

我不使用dokan插件。这是获取(发布)作者 ID 并使您的代码工作的方法:

add_action( 'woocommerce_single_product_summary', 'display_author_name', 20 );
function display_author_name() {
    // Get the author ID (the vendor ID)
    $vendor_id = get_post_field( 'post_author', get_the_id() );
    // Get the WP_User object (the vendor) from author ID
    $vendor = new WP_User($vendor_id);

    $store_info  = dokan_get_store_info( $vendor_id ); // Get the store data
    $store_name  = $store_info['store_name'];          // Get the store name
    $store_url   = dokan_get_store_url( $vendor_id );  // Get the store URL

    $vendor_name = $vendor->display_name;              // Get the vendor name
    $address     = $vendor->billing_address_1;           // Get the vendor address
    $postcode    = $vendor->billing_postcode;          // Get the vendor postcode
    $city        = $vendor->billing_city;              // Get the vendor city
    $state       = $vendor->billing_state;             // Get the vendor state
    $country     = $vendor->billing_country;           // Get the vendor country

    // Display the seller name linked to the store
    printf( '<b>Seller Name:</b> <a href="%s">%s</a>', $store_url, $store_name );
}

代码位于您的活动子主题(或活动主题)的 function.php 文件中。现在应该可以了。

但我不知道如何获得供应商评级和位置。你最好问问 Dokan 的支持。

该代码基于此相关线程

于 2018-07-03T00:41:05.927 回答
0

这应该这样做:

$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];
于 2019-04-08T21:07:32.690 回答