Вы можете попробовать использовать этот фрагмент на странице вашего продукта:
$args = [
'posts_per_page' => -1,
'orderby' => 'title',
'post_type' => 'shop_coupon',
'post_status' => 'publish',
];
$coupons = get_posts( $args );
Или добавить к функции. php:
add_action('woocommerce_single_product_summary', function () {
$args = [
'posts_per_page' => -1,
'orderby' => 'title',
'post_type' => 'shop_coupon',
'post_status' => 'publish',
];
$coupons = get_posts( $args );
//some logic
});