Ted,For our client’s Shopify site, we only made modifications to the theme.liquid page. No changes were made to any products pages or the page.liquid page.You want to place the code on the theme.liquid page between the head tag and body tag. You are also going to be creating conditionals for each page that you wish to modify the Title and Meta tags for.Here is an example of the code you would want to place if you were modifying your ‘Welcome’ and ‘Product 1′ pages:{% case page_title %}{% when null %}{% when ‘Welcome’ %}{% when ‘Product 1′ %}Once you have completed the above conditionals for all of your landing pages, paste the rest of the code (which is under the bolded conditional in the post) before the body tag.
Ted,For our client’s
Ted,For our client’s Shopify site, we only made modifications to the theme.liquid page. No changes were made to any products pages or the page.liquid page.You want to place the code on the theme.liquid page between the head tag and body tag. You are also going to be creating conditionals for each page that you wish to modify the Title and Meta tags for.Here is an example of the code you would want to place if you were modifying your ‘Welcome’ and ‘Product 1′ pages:{% case page_title %}{% when null %}{% when ‘Welcome’ %}{% when ‘Product 1′ %}Once you have completed the above conditionals for all of your landing pages, paste the rest of the code (which is under the bolded conditional in the post) before the body tag.