I’ve updated my email and want to change it on the header displayed on my website.
I’ve gone to “Edit Code”, but the folder for the header.liquid is not listed anywhere (sections folder is empty). Can anyone help me find the code to change the email displayed in the header?
Template used is Supply
Hello @BByrne ,
Sounds like you are using a old version of Supply theme.
btw you can track your header file from theme.liquid or once try to check in snippets
If still not found please share the theme.liquid here.
Thanks
Hello,
I am San from MS Web Designer.
If this is Empire Supply theme you can find it here:
Do let me know in case of any concerns.
Regards,
San
HI Thanks for your reply
Ive pasted my theme.liquid below. Any help would be appreciated
{% if settings.favicon_enable %}
{% endif %}{% case template %}
{% when ‘product’ %}
{% endcase %}
{% if page_description %}
{% endif %}
{% include ‘open-graph-tags’ %}
{% include ‘twitter-card’ %}
{% if settings.ajax_cart_method != ‘page’ %}
{{ ‘ajaxify.scss.css’ | asset_url | stylesheet_tag }}
{% endif %}
{{ ‘timber.scss.css’ | asset_url | stylesheet_tag }}
{% include ‘google-fonts’ %}
{{ content_for_header }}
{% include ‘oldIE-js’ %}
{% comment %}
If you store has customers disabled, you can remove the following JS file
{% endcomment %}
{% if template contains ‘customers’ %}
{{ ‘shopify_common.js’ | shopify_asset_url | script_tag }}
{{ ‘customer_area.js’ | shopify_asset_url | script_tag }}
{% endif %}
{{ ‘//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js’ | script_tag }}
{{ ‘modernizr.min.js’ | asset_url | script_tag }}
{% if shop.customer_accounts_enabled %}
{% if customer %}
{% endif %}
{% endif %}
{% include ‘hide-paypal’ %}
{% capture the_snippet_content %}{% include 'socialshopwave-helper' %}{% endcapture %} {% unless the_snippet_content contains 'Liquid error' %} {{ the_snippet_content }} {% endunless %}
{% else %}
{% endif %}
{% if settings.logo_use_image %}
{% else %}
{{ shop.name }}
{% endif %}
{% if template == 'index' %}
{% else %}
{% if settings.header_message != blank or shop.customer_accounts_enabled %}
{% endif %}
{% include ‘search-bar’ %}
{{ 'layout.cart.cart' | t }} {{ cart.item_count }}{{ content_for_layout }}
{% capture theme_settings_link %}{{ ‘layout.footer.theme_settings’ | t }}{% endcapture %}
{% if settings.footer_quicklinks_enable %}
{{ 'layout.footer.quick_links' | t }}
-
{% for link in linklists[settings.footer_quicklinks_linklist].links %}
- {{ link.title }} {% else %} {% capture theme_settings_footer_linklist_path %}Footer > Quick links link list{% endcapture %} {{ 'layout.footer.instructions_for_linklist_html' | t: theme_settings_link: theme_settings_link, theme_settings_footer_linklist_path: theme_settings_footer_linklist_path }} {% endfor %}
{% if settings.footer_content_enable or settings.footer_social_enable %}
{{ 'layout.footer.get_in_touch' | t }}
{% if settings.footer_content_enable %}{% if settings.footer_content_text != blank %} {{ settings.footer_content_text }} {% else %} {{ 'layout.footer.instructions_for_text_content_html' | t: theme_settings_link: theme_settings_link }} {% endif %}
{% endif %} {% if settings.footer_social_enable %}-
{% if settings.social_twitter_link != blank %}
- Tumblr {% endif %} {% if settings.social_youtube_link != blank %}
- YouTube {% endif %} {% if settings.social_vimeo_link != blank %}
- Vimeo {% endif %} {% if settings.social_fancy_link != blank %}
- Fancy {% endif %}
{% if settings.footer_newsletter_enable %}
{{ 'layout.footer.newsletter_title' | t }}
{% include 'newsletter-form' %}-
{% for link in linklists[settings.footer_legallinks_linklist].links %}
- {{ link.title }} {% endfor %}
- © {{ 'now' | date: "%Y" }} {{ shop.name | link_to: '/' }} {% comment %}
- {{ powered_by_link }} {% endcomment %}
{% unless shop.enabled_payment_types == empty %}
-
{% for type in shop.enabled_payment_types %}
{% if payment_icons_available contains type %}
- {{ type | replace: '_',' ' }} {% endif %} {% endfor %}
{{ ‘fastclick.min.js’ | asset_url | script_tag }}
{{ ‘shop.js’ | asset_url | script_tag }}
{% if template == ‘index’ and hero_enabled %}
{{ ‘jquery.flexslider.min.js’ | asset_url | script_tag }}
{% endif %}
{% if settings.ajax_cart_method != ‘page’ %}
{{ ‘handlebars.min.js’ | asset_url | script_tag }}
{% include ‘ajax-cart-template’ %}
{{ ‘ajaxify.js’ | asset_url | script_tag }}
{% endif %}
{% if template == 'collection' %} {% for collection in collections %}{{ collection.id }},{% endfor %} {% endif %} {% if template == 'product' %} {% for collection in product.collections %}{{ collection.id }},{% endfor %} {% endif %} {% if template == 'cart' %} {% for item in cart.items %}{% for tag in item.product.tags %}{{ tag }}, {% endfor %}{% endfor %} {% for item in cart.items %}{% for collection in item.product.collections %}{{ collection.id }}, {% endfor %}{% endfor %}{% endif %}
{% include ‘swymSnippet’ %}
{% include ‘livechat_chat_window’ %}
Your header code available in the same file theme.liquid
check b/w the tag
