I can not see breadcrumb block (with breadcrumb enabled in Appearance > setting > MTT Theme setting > Basic setting).
Am I missing something? Do I have to add any breadcrumb module?
Please help.

CommentFileSizeAuthor
#4 breadcrumbs-after.png38.01 KBAnonymous (not verified)
#4 breadcrumbs-before.png15.94 KBAnonymous (not verified)
#4 breadcrumb-2377109-4.patch957 bytesAnonymous (not verified)

Comments

federico’s picture

Category: Support request » Bug report

bump

bohz’s picture

Yes, it seems the breadcrumbs have been left out from page.tpl.php.
inserting <?php print $breadcrumb; ?> with the proper markup will in fact render the breadcrumb trail.

sbikas’s picture

Yes, bohz!
This is what I did to render breadcrumb as in demo. Put it in page.tpl.php (after the header block).

<!-- EOF: #header -->

<!-- # Breadcrumb -->  <!-- Inserted by sbikas -->
<?php if ($breadcrumb) :?>
 <div style="margin-top: 0px;" id="page-intro" class="clearfix">
  <div id="page-intro-inside" class="clearfix internal-banner no-internal-banner-image">
   <div class="container">
    <div class="row">
     <div class="col-md-12">
      <div id="breadcrumb" class="clearfix">
       <div id="breadcrumb-inside" class="clearfix">
        <?php print $breadcrumb; ?>
       </div>
      </div>
     </div>
    </div>
   </div>
  </div>
 </div>
<?php endif; ?>
<!-- EOF:#Breadcrumb -->
Anonymous’s picture

StatusFileSize
new957 bytes
new15.94 KB
new38.01 KB

A patch that fixes the issue.

Anonymous’s picture

Assigned: sbikas »
Status: Active » Needs review
Anonymous’s picture

Please note that this patch conflicts with valid-html-markup-patch3-2545850-6.patch. So it is best to apply breadcrumb-2377109-4.patch first, and then to manually insert the three minor changes of the other patch.

gtsopour’s picture

Status: Fixed » Closed (fixed)

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