Home Forums WoodMart support forum Product Edit Reply To: Product Edit

#223503

mody.abs
Participant

Thank you so much fdeross

This helped a lot, I made a few changes to my version.

// Show Seller name on the product thumbnail For Dokan Multivendor plugin
add_action( 'woocommerce_after_shop_loop_item_title','sold_by' );
function sold_by(){
?>
	</a>
	<?php
		global $product;
		$seller = get_post_field( 'post_author', $product->get_id());
		 $author  = get_user_by( 'id', $seller );

		$store_info = dokan_get_store_info( $author->ID );
		if ( !empty( $store_info['store_name'] ) ) { ?>
				<span class="frostingsoldbyarchive">
					<?php printf( 'sold by: %s', $store_info['store_name'] ); ?>
				</span>
		<?php
	}
}