{% sw_extends '@Storefront/storefront/layout/header/header.html.twig' %}
{% block layout_header_actions_cart %}
{% if context.customer and not config("ProcDisableCheckout.config.hideCartCheckout") %}
{{ parent() }}
{% endif %}
{% endblock %}
{% block layout_header_actions_account %}
{% if not config("ProcDisableCheckout.config.hideCartCheckout") %}
{# hide also account section #}
{{ parent() }}
{% endif %}
{% endblock %}