Closed (fixed)
Project:
Nodewords: D6 Meta Tags
Version:
6.x-1.10
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
30 Dec 2009 at 21:55 UTC
Updated:
14 Jan 2010 at 19:20 UTC
Have installed this and the bing meta tag is correctly generated. Bing kept reporting failures so I copied the generated code into the top of my HEAD section in my template (page.tpl.php). Authentication was fine.
I presume this is because I am using YUI menus which put a lot of javascript into the head. The meta tags are generated below this and my guess is that Bing only searches the first X lines or words within the tag.
Please can the header meta tags be moved to the top. You can see what I mean by looking at the generated code of www.sean-gates.com. The first tag is the one that I have inserted manually because the second one kept failing
Comments
Comment #1
avpadernoThat could depend from the used theme, because with Garland I get the meta tags printed before any included JavaScript files.
Comment #2
avpadernoIt is caused from YUI module, which adds the lines to include JavaScript files using
drupal_set_html_head().Comment #3
avpadernoI changed the code, which should now put its output right after the line setting the output content type. As Nodewords uses
hook_preprocess_page(), no other module should be able to put its output before Nodewords.Comment #4
seangee commentedCool - thanks