How to add meta value in woocommerce product shop, archive and category pages?

Sometimes we want to add additional details to display in our Woocommerce products like brand, style etc. Thanks to the available hook provided by Woocommerce using the “woocommerce_after_shop_loop_item_title” this customization is possible. Copy and paste the following to the theme functions.php file.
                

// Note: In this sample code assuming that you have custom meta for the product store which has a meta key of “_item_store”

function woocommerce_custom_meta(){
	global $product;
        // Display item store after product title
	echo get_post_meta( $product->get_id(), ‘_item_store’, true );
}

add_action( ‘woocommerce_after_shop_loop_item_title’, ‘woocommerce_custom_meta’);

        
Item Store-Project Zealous