The title tag appears below the meta keywords and meta description tags on all pages. Incidentally, I am also using the page title and meta tag modules.

Comments

shruti.sheth’s picture

Hi,
I have tried using page title module and nodewords module, it seems to work fine when both these are enabled,
Can you please provide a link and version for meta tags modules you used and also the details of the settings done for the same.
Hopefully this may help.

Thanks

danpros’s picture

Status: Active » Closed (fixed)

Hi,

You can try re-order the head title in page.tpl.php and page-front.tpl.php

  <?php print $head; ?>
  <title><?php print $head_title; ?></title>

to this

  <title><?php print $head_title; ?></title>
  <?php print $head; ?>