-
AuthorPosts
-
August 16, 2015 at 8:25 pm #360739
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.
September 22, 2015 at 5:39 am #398550HI Support,
Thanks for the tip for the removal breadcrumbs, worked like a treat.
Cheers
Mario
September 22, 2015 at 5:48 am #398563You’re most welcome @mariogarcia1.
If you need anything else, please let us know.
December 5, 2015 at 9:09 pm #693822I used a negative top-margin on the section below the breadcrumb menu. -45px worked well for me on my current icon stack.
December 5, 2015 at 11:20 pm #693920Hello There,
Thanks for updating this thread!
We appreciate the information you have shared. This would be useful to other X theme users.More power.
January 2, 2016 at 7:45 am #728565Hello,
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
January 2, 2016 at 8:11 am #728581Hi 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.
-
AuthorPosts