Breadcrumbs below costum title

Hi Themeco,

i disabled the page title option on all my pages and replaced it with costum fullwidth title images. The problem is right now, that I don´t have any breadcrumbs. I found this request in another support post, but the code given there isn´t working (please see https://theme.co/apex/forums/topic/move-breadcrumbs-below-title-image/).
I also changed the path, where the wp-header.php should go to the new cranium seetings but still no effect. Sure, I could add breadcrumbs via shortcode manually but it seems kind of unprofessional to me.
Any suggestions?
Thx

Hi @gehess,

Thanks for reaching out.

In renew stack, the breadcrumb and the title are part of the landmark, disabling the title also disable the entire landmark. In that case, I recommend adding your breadcrumbs manually, You can do that by adding breadcrumb element to your page (within the builder) since it has a custom title too.

Thanks!

Thanks for your answer. As I described before, I´m aware of the shortcode option for breadcrumbs. Nevertheless, according to former posts in your support forum there should be an option achieving it with a custom wp-header.php. The suggestions in the post I added are not working anymore so I hoped recieving some advice how to manage it anyway.
Adding it manually will be quiet unhandy at a specific amount of pages

Hello @Gehess,

The code given in the thread, https://theme.co/apex/forums/topic/move-breadcrumbs-below-title-image/, was specifically for Icon stack and for the X theme. If you are using Pro theme, then it will not work especially if you are using a custom header. Unless you are using the default Pro theme header, you might be able to have a similar layout adding a breadcrumb below title.

Hope this helps.

Sorry, I didn´t mention that I´m using not Pro but X with a renew child theme. In another post which I can´t find at the moment, a staff member of yours explained, that you simply can replace all “icon” entries with “renew” for example, so i did this:

<?php // ============================================================================= // VIEWS/renew/WP-HEADER.PHP // ----------------------------------------------------------------------------- // Header output for renew. // ============================================================================= ?> <?php x_get_view( 'global', '_header' ); ?> <?php x_get_view( 'global', '_slider-above' ); ?> <?php x_get_view( 'global', '_topbar' ); ?> <?php x_get_view( 'global', '_navbar' ); ?> <?php x_get_view( 'global', '_slider-below' ); ?> <?php x_get_view( 'renew', '_breadcrumbs' ); ?> <?php x_get_view( 'renew', '_landmark-header' ); ?>

Isn´t that somehow possible?

Hello @Gehess,

Since you are using Renew, you cannot simply replace the “Icon”. It will not work because there is no such breadcrumb.php file in renew. With Renew stack, the breadcrumbs is already integrated with the landmark header. All you have to do is enable it by going to X > Theme Options > Headers > Miscellaneous. Once enabled, the breadcrumb will display below the navbar just like what is shown in the screenshot above.

Hope this helps.

Thanks again for the information! I already know how to activate breadcrumbs. Again: As I like to add custom title elements I won´t use the normal titlebar, which contains the breadcrumbs as well. So I´m just trying to get breadcrumbs to another position below my custom title image…

Hello @Gehess,

If you want to display the breadcrumb along with your custom title, you can use this code instead:

<div class="x-breadcrumbs-wrap">
    <?php x_breadcrumbs(); ?>
</div>

Hope this helps.

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