How to fix title and SEO meta not showing in

HTML code for title tags and meta descriptions can be found in a web page’s header. They help search engines in recognizing a page’s content. Whenever a page shows in search engine results, its title tag and meta description are often displayed. 

More users may click over from search engine results to your website if your meta tags are well crafted and engaging.

image

You can fix the issue by following these steps

  • Open your Shopify Dashboard
  • Go to the option of Sales Channel and choose the online store
  • After clicking on the Online Store, you will find the option of theme setting 
  • Click on Edit Code in the theme setting drop down
  • Now you can access the website’s backend 
  • You can choose theme.liquid 

Then, Check there any unnecessary code is present for the SEO title or meta description. In my case, as you can see in the below image there is an SEO title and description code which is already present But it are generated from an app.

image 1

Replace those codes with new ones

Whenever there is such code, copy the following code which is given below, and paste it before the </head> tag

<title>
{{ page_title }}{% if current_tags %}{% assign meta_tags = current_tags | join: ', ' %} – {{ 'general.meta.tags' | t: tags: meta_tags }}{% endif %}{% if current_page != 1 %} – {{ 'general.meta.page' | t: 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 -%}

Once the code has been pasted, click refresh and then reload the website

As a result, your store now displays the SEO meta title and meta description

image1

You already know that meta tags are crucial to getting your website to show up in Google search results, The steps which are given above helps your store to get more clicks and impression…

Also Check: Guide: How to create robots.txt file Shopify

Leave a Reply

Your email address will not be published. Required fields are marked *