I am unable to configure page titles to display properly using a subtheme of Omega 7.x-2.1. I believe that they were functioning when I first started working with the subtheme, but after changing some of the page title display options, even selecting "Custom" and entering the name of the site in the text field doesn't cause a change from:
<title> | </title>

Comments

safetypin’s picture

Title: Head tag "title" configuration is broken » Site title variable not displaying

Okay, so I realized after looking at the problem that this is a better description. With proper configuration, the page names will get put into the page title tag, but the site title variable appears to be empty for all pages.

RmrJmrGrl’s picture

I am having this same issue where the title is not displaying on my article pages.

http://beta.upstreampumping.com/?q=article/bakken-shale

marcoka’s picture

Status: Active » Fixed

i think this was fixed in 3.1. reopen if this still happens.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

rplescia’s picture

Version: 7.x-2.1 » 7.x-3.1

Still having this issue in 3.1. No node/page titles are displayed, I tried recreating the site from scratch on another machine just to make sure it wasn't me being a plank. I'm just using the standard HTML 5 subtheme with no modifications to titles fields

rplescia’s picture

Status: Closed (fixed) » Active

I got it to work by changing the following if statement in node.tpl.php

  <?php if (!$page && $title): ?>
  <header>
    <h2<?php print $title_attributes; ?>><a href="<?php print $node_url ?>" title="<?php print $title ?>"><?php print $title ?></a></h2>
  </header>
  <?php else: ?>
  <header>
    <h2<?php print $title_attributes; ?>><?php print $title ?></h2>
  </header>
  <?php endif; ?>
Avalanche’s picture

I was experiencing the same problem, and post #6 by rplescia fixed it for me. :)

Thanks so much rplescia - this was driving me crazy!!!

cellar door’s picture

Assigned: Unassigned » himerus

Thoughts himerus?

clo75’s picture

First I was thinking about a global problem... But it worked with Bartik theme..; so I suspected a problem with Omega

#6 worked also for me

Thanks very much rplescia !