Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #360739

    Lely
    Moderator

    Hello There,

    Unfortunately, this is not possible the other way around. When you turn off the breadcrumbs globally, the html markup for breadcrumb is not there at all. Unlike when it’s there and we just hide it from view like the previous reply.

    Hope this helps.

    #398550

    mariogarcia1
    Participant

    HI Support,

    Thanks for the tip for the removal breadcrumbs, worked like a treat.

    Cheers

    Mario

    #398563

    Thai
    Moderator

    You’re most welcome @mariogarcia1.

    If you need anything else, please let us know.

    #693822

    MarcBouchard
    Participant

    I used a negative top-margin on the section below the breadcrumb menu. -45px worked well for me on my current icon stack.

    #693920

    Rue Nel
    Moderator

    Hello There,

    Thanks for updating this thread!
    We appreciate the information you have shared. This would be useful to other X theme users.

    More power.

    #728565

    ddibernardo
    Participant

    Hello,

    I have a similar question on bredcrumbs. I have them enabled on my site http://www.genyfinanceguy.com, but recently changed the default front page (i.e home page) to be “Start Here” instead of the blog. However, in doing so the breadcrumbs are no longer displaying on the “Start Here” Page.

    Is it possible to get them to come back? I like the way it sections off the page header where I have an ad displayed.

    Thanks,

    Dom

    #728581

    Christopher
    Moderator

    Hi there,

    Breadcrumbs don’t display on home page by default.

    Because this requires a template change, I’d advise that you setup a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.

    Copy _breadcrumbs.php from framework/views/integrity and put it in the same path inside child theme, replace existing code with following:

    <?php
    
    // =============================================================================
    // VIEWS/INTEGRITY/_BREADCRUMBS.PHP
    // -----------------------------------------------------------------------------
    // Breadcrumb output for Integrity.
    // =============================================================================
    
    ?>
    
      <?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; ?>
    

    Hope that helps.