How To Put Customer Name On Header When Logged In On Focal Theme

Hi,

Is there an option or maybe some code you could help me with that could help me display customer name as “Hello, ” when logged in rather than displaying “account”.

The theme I’m using is Focal Theme.

Thank you!

Hi,

First take backup

At Edit code>header.liquid

First, you need to check if the customer is logged in. If they are, you can display their name; if not, you can display a login link. The Liquid code might look something like this:


  {% if customer %}
    

Welcome, {{ customer.first_name }}!

  {% else %}
    

Log in

  {% endif %}

Save and test, if all ok then publish. If you still need help then you can contact us.