Код: Выделить всё
function has_bought() {
$customer_orders = get_posts(
array(
'numberposts' => -1,
'meta_key' => '_customer_user',
'meta_value' => get_current_user_id(),
'post_type' => 'shop_order', // WC orders post type
'post_status' => 'wc-completed' // Only orders with status "completed"
)
);
return count($customer_orders) > 0 ? true : false;
}
if( has_bought() )
echo '
You have already maid a purchase
';
else
echo '
Welcome, for your first purchase you will get a discount of 10%
';
Как мне этого добиться?
Подробнее здесь: https://stackoverflow.com/questions/578 ... oocommerce
Мобильная версия