• Hi,
    I am trying to write purchased item’s author name instead of ” echo $this->get_shop_name(); “. But couldn’t find the right function, could you help me with that?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Within the loop of items (i.e. the order items table), you can get the product author with:

    
    <?php echo get_post_field( 'post_author', $item['product_id'] ); ?>
    

    Hope that helps!

    Thread Starter canyasa

    (@canyasa)

    Thanks for the quick reply, but that didn’t work on invoice page. I am trying to show item owner’s nickname instead my website title.

    Plugin Contributor Ewout

    (@pomegranate)

    where did you place this exactly? As I said, this only works in the items loop (foreach( $items as $item_id => $item )). So if you want to put this on the top of your invoice, you will need to initiate a separate loop there.

    Ewout

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Product authors name on invoice’ is closed to new replies.