Hi There,
You can check a logged in customers order count and then show a checkout button or notice of the order minimum using something like
{% if customer.orders_count > 0 %}
// display info for a customer who has already placed an order
{% else %}
// display info for a customer who hasn't logged in, or who hasn't placed an order
{% endif %}
Cheers,
Elliott