When I go into my theme.liquid, I notice that my meta title and description that I have set in shopify does not map over into the booster theme. This is what it currently shows:
{{ page_title }}{% if current_tags %} – tagged "{{ current_tags |
join: ', ' }}"{% endif %}{% if current_page != 1 %} – Page {{
current_page }}{% endif %}{% unless page_title contains shop.name %}
– {{ shop.name }}{% endunless %}
{% if page_description %}
{% endif %}
How can I change the above to reflect the following : Title: Designer Dog Clothes Luxury Pet Boutique
Description: Luxury dog clothes boutique that has designer dog apparel and accessories. We carry dog beds, luxury harnesses and chihuahua carriers.
I dont want to mess up my coding so if anyone can offer help, it would be appreciated
Hi @April_Feola ,
You can reset the code like this and it will appear what you need:
<!-- begin adding title and description -->
{%- liquid
assign page_title = "Designer Dog Clothes Luxury Pet Boutique"
assign page_description = "Luxury dog clothes boutique that has designer dog apparel and accessories. We carry dog beds, luxury harnesses and chihuahua carriers."
%}
<!-- end adding title and description -->
<title>
{{ page_title }}
{%- if current_tags %} – tagged "{{ current_tags | join: ', ' }}"{% endif -%}
{%- if current_page != 1 %} – Page {{ current_page }}{% endif -%}
{%- unless page_title contains shop.name %} – {{ shop.name }}{% endunless -%}
</title>
{% if page_description %}
<meta name="description" content="{{ page_description | escape }}">
{% endif %}
Hope it helps @April_Feola !