dcman007 Posted July 1, 2012 Share Posted July 1, 2012 Hi, I have noticed that in pages generated by Prestashop (best sales, manufacturers, new products etc. etc.) the Meta Titles are not updating, even though I have entered this information in the back office system. I've attached a file showing an example of this for the Manufacturers page. All of the META information has been entered, but when visiting the page http://www.cfw-kitchen-worktops.co.uk/manufacturers you will see that the Title tag reverts simply to the name of the store. This is happening on all pages that are created by the Prestashop system - i.e. not specific product or specific manufacturer pages that I have created when entering site content (see my second attached file for a complete list of pages with duplicate title tags - 14 in total). Can anyone advise why this might be happening solely on the pages shown in my attached files? Thanks, in advance Link to comment Share on other sites More sharing options...
shacker Posted July 1, 2012 Share Posted July 1, 2012 you need to check in your source code to check if the meta exists. Google and other borwser take some time to get all the changes in the meta tags. This is not automatic Link to comment Share on other sites More sharing options...
dcman007 Posted July 2, 2012 Author Share Posted July 2, 2012 Thanks shacker - I've checked the source code of the manuafacturer page and there isn't actually a META Description tag shown there, just a title tag, which is displaying the name of the store rather than the information entered in the back office system. Here's a snapshot of the header code: <title>CFW Kitchen Worktops</title> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> <meta name="generator" content="PrestaShop" /> <meta name="robots" content="index,follow" /> The site has been live for about a month now, are you suggesting that it may still take a while for Google to read the correct META information? If so I will leave it a bit longer. As a double check I forced compile in the back office and turned off caching when I updated the META information for this page, but it still displayed the same title tag info on the site. Link to comment Share on other sites More sharing options...
shacker Posted July 3, 2012 Share Posted July 3, 2012 manufacturer page dont have, the tpl of the header must have the metas . in your theem, open header.tpl and you must have <title>{$meta_title|escape:'htmlall':'UTF-8'}</title> {if isset($meta_description) AND $meta_description} <meta name="description" content="{$meta_description|escape:html:'UTF-8'}" /> {/if} {if isset($meta_keywords) AND $meta_keywords} <meta name="keywords" content="{$meta_keywords|escape:html:'UTF-8'}" /> {/if} 1 Link to comment Share on other sites More sharing options...
Recommended Posts