Hi,

I am new with Omega and Navin theme. Without further exploration, the default usage of the theme shows no Title. No View/Edit button, Very small body font

Comments

markhalliwell’s picture

Status: Active » Postponed (maintainer needs more info)

Could you please provide a screenshot? I do not understand how the title could be missing, the view/edit may just be because you aren't logged in? Have you tried clearing caches?

chrowe’s picture

Version: 7.x-1.0-beta1 » 7.x-1.0-beta2
Category: support » bug
Status: Postponed (maintainer needs more info) » Active

This is still an issue for me but only on some pages

Blog posts for example
https://skitch.com/chrowe/8hwad/navin-bad

it is an issue on category and blog list views as well

other pages are fine
https://skitch.com/chrowe/8hw26/navin-good

markhalliwell’s picture

Category: bug » support
Status: Active » Fixed

If the edit tab isn't showing up, it would seem that user does not have permissions to edit that content type. By default, if there is only a view tab on the node type, Drupal does not show the tabs. This does not sounds like a theming issue as theme's don't generally handle whether or not the tabs show up. They only show the tabs if Drupal says there are tabs to show. Given that they work on other content types and not this one, it appears to be bad configuration. Will mark this issue as fixed so you can see this response. After you read it, please mark the status as "Closed (works as designed)".

chrowe’s picture

Title: View/Edit button » View/Edit button and title missing, body text not formatted right.
Category: support » bug
Status: Fixed » Active

Thanks for your quick response

This is not a permissions issue, as I am viewing everything as user/1 or anonymous and have the same issues for both.
It is not just the edit tab. The title is also missing, and the body text is not formatted as it should be by Navin.
As far as I can tell only the Basic Page content type is working right, any other content types created by Enterprise apps or by myself have these same issues

For example, I just enabled the Events app and the example content and it looks fine in Bartik https://skitch.com/chrowe/8hij4/tbha-bartik but in Navin it does not look right at all https://skitch.com/chrowe/8hik8/tbha-navin No title, no admin links, body text is wrong, etc.

I change the title to encompass all theses issues since it seems like the original poster was having all these same issues.

markhalliwell’s picture

Category: bug » support
Status: Active » Fixed

Not to sound disrespectful or even unsympathetic, however this is NOT a theme issue or an issue with Navin. You will need to debug/disable further modules and/or your own setup to determine where the issue truly lies. Please mark this issue as "Closed (works as designed)" when you have read this.

Check to make sure your advanced elements are enabled in the Appearance > Settings > Navin. Also make sure that there are no conflicting modules installed.

http://grab.by/dOdk

The code for the title, action links and content are located in: sites/all/themes/navin/templates/region--content.tpl.php:

<div<?php print $attributes; ?>>
  <div<?php print $content_attributes; ?>>
	  <?php if (isset($messages) && $messages): ?>
	    <div id="messages"><?php print $messages; ?></div>
	  <?php endif; ?>
    <a id="main-content"></a>
    <?php if ($title): ?>
    <?php if ($title_hidden): ?><div class="element-invisible"><?php endif; ?>
    <?php print render($title_prefix); ?>
    <h1 class="title" id="page-title"><?php print $title; ?></h1>
    <?php print render($title_suffix); ?>
    <?php if ($title_hidden): ?></div><?php endif; ?>
    <?php endif; ?>
    <?php if ($tabs): ?><div class="tabs clearfix"><?php print render($tabs); ?></div><?php endif; ?>
    <?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
    <?php print $content; ?>
    <?php if ($feed_icons): ?><div class="feed-icon clearfix"><?php print $feed_icons; ?></div><?php endif; ?>
  </div>
</div>

As you can see above, the theme (Navin) does not prevent these items to be hidden or alter them in any way.

I have installed a fresh copy of OE and enabled the blog and event apps. You can see from the screenshots below that all the elements appear and are properly displayed:

http://grab.by/dOeC
http://grab.by/dOeG

Status: Fixed » Closed (fixed)

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