X Pro Display breadcrumbs in Integrity Stack

Dear Team,

I have been trying to display breadcrumbs in my pages but unfortunately all the suggestions in the forum topic didn’t work.

Would like your support in this regard,

Let me share the site details here.

Hi @rca4plugin,

Thank you for writing in, but the credentials you provided did not work. Please check.

The Breadcrumbs can be enabled under Theme Options > Header > Breadcrumbs



But that is for the standard header, since you have a custom header (build in PRO), you need to put a Breadcrumbs element on that header. Edit your Header and add another bar and put a Breadcrumb element on that bar.

Hope it helps,
Cheers!

Hi @friech

If I have multiple custom headers (1 for each page) will breadcrumbs still work?

Hi Niall,

Since you are using the Pro headers, you can place a breadcrumbs element to the headers instead:

Hope this helps.

Hello, on this subject, i need to place breadcrumbs immediately after the slider area.

I am using Pro headers in the Integrity stack, but the slider is defined by the page, so using the header editor is not an option i believe.

I already found a way to place custom code after the slider.

Can i copy the template partial that manages breadcrumbs and copy it to my custom template? If so, where is the template partial located in the parent theme?

thank you in advance.

I was able to include the breadcrumbs, by copying the code from: /pro/framework/legacy/cranium/headers/views/integrity/_breadcrumbs.php

      <?php if ( ! is_front_page() ) : ?>
    <?php if ( x_get_option( 'x_breadcrumb_display' ) == '1' ) : ?>

      <div class="x-breadcrumb-wrap">
        <div class="x-container max width">

          <?php x_breadcrumbs(); ?>

          <?php if ( is_single() || x_is_portfolio_item() ) : ?>
            <?php x_entry_navigation(); ?>
          <?php endif; ?>

        </div>
      </div>
    <?php endif; ?>
  <?php endif; ?>

Glad it’s working and thanks for sharing! And yes, you can copy any code, but styling or design may look different if you copied from different stack templates.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.