I've tried checking and unchecking a few times but the breadcrumbs show up no matter what.

Comments

gtsopour’s picture

Assigned: Unassigned » skech
Issue tags: +SimpleCorp responsive Drupal theme, +SimpleCorp theme
skech’s picture

Status: Active » Fixed

Hi frenchco,
the theme setting for Breadcrumb display seems to work fine.
You can disable the breadcrumbs from the theme's settings page (Home » Administration » Appearance » Settings).

Thanks
Soukri

Status: Fixed » Closed (fixed)

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

johnhorning’s picture

Status: Closed (fixed) » Active

I am having problems with the breadcrumb as well. I uncheck the box in settings and the breadcrumb goes away, but reappears if I flush cache. Also, the box won't stay checked after I save if I want to enable breadcrumbs.

skech’s picture

Status: Active » Fixed

Hi guys and thanks for reporting this,

seems that the check of breadcrumb display into the simplecorp/page.tpl.php file, wasn't right:

<?php if (theme_get_setting('breadcrumb_display','simplecorp') || $messages): ?>
<!--breadrumb & messages -->
<div class="container clearfix">
<?php print $breadcrumb; ?>
<?php print $messages; ?>
</div>
<!--EOF: breadrumb & messages -->
<?php endif; ?>

The above code into simplecorp/page.tpl.php file, replaced by the following:

<?php if ($breadcrumb && theme_get_setting('breadcrumb_display','simplecorp')):?>
<!-- #breadcrumb -->
<div class="container clearfix">
<?php print $breadcrumb; ?>
</div>
<!-- EOF: #breadcrumb -->
<?php endif; ?>

<?php if ($messages):?>
<!--messages -->
<div class="container clearfix">
<?php print $messages; ?>
</div>
<!--EOF: messages -->        
<?php endif; ?>

The changes are commited http://drupalcode.org/project/simplecorp.git/commit/bb4b17d and will included in the next release - SimpleCorp 7.x-1.1.

Thanks
Soukri

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