thêm vào file functions.php trong theme
// hiển thị thông tin thêm ra trang chủ customfield
add_action('woocommerce_shop_loop_item_title','thong_tin_them_sp');
function thong_tin_them_sp(){
$thongtin=get_field('dia-chi-website'); //tên trường customfield đã add;
echo $thongtin;
}