if ( wc_get_loop_prop( 'total' ) ) {
while ( have_posts() ) {
the_post();
/**
* Hook: woocommerce_shop_loop.
*/
do_action( 'woocommerce_shop_loop' );
// Display custom meta field value
global $product;
$custom_product_text = get_post_meta($product->get_id(), '_custom_product_text', true);
if (!empty($custom_product_text)) {
echo '
' . wp_kses_post($custom_product_text) . '
';
}
wc_get_template_part( 'content', 'product' );
}
}