Knowledge Base

Table of Contents

Updated on May 17, 2023

Show Product Author in Admin

Problem

When multiple people manage Woocommerce products, its good to know who the original author of the product was.

Solution

Adding this code to your child theme’s functions.php file will add an Author column in Woocommerce admin so you know who added the product.

/*Show product Author column in Woocommerce admin*/

function prefix_add_author_woocommerce() {
 add_post_type_support( 'product', 'author' );
 }
add_action( 'after_setup_theme', 'prefix_add_author_woocommerce' );