Hi,

I just installed this theme and liking it. However, I can't seem to get it to show the site name?
I turned the logo off, so 'Bluez' is no longer there. Made sure the 'show site name' is toggled on, both global and in the theme. But only the subtitle is displayed, not the site name.
What am I missing here?

Thank you,

Jan

Comments

Ujval Shah’s picture

Status: Active » Closed (fixed)

Apply Following Changes :

1. page--front.tpl.php

replace : <?php if ($logo || $site_slogan): ?>
with : <?php if ($logo || $site_slogan || $site_name): ?>

Add following code after line number : 92

<!-- sitename START -->
  <?php if ($site_name): ?>
    <div id="sitename">
      <?php print $site_name; ?>
     </div>
   <?php endif; ?>
<!-- sitename Ends -->

2. page.tpl.php

replace : <?php if ($logo || $site_slogan): ?>
with : <?php if ($logo || $site_slogan || $site_name): ?>

Add following code after line number : 94

<!-- sitename START -->
  <?php if ($site_name): ?>
    <div id="sitename">
      <?php print $site_name; ?>
     </div>
   <?php endif; ?>
<!-- sitename Ends -->