I wants to show breadcrumbs after slider – http://prntscr.com/it4bd4
I have added the code for custom breadcrumbs on the page.
I have enabled this option – http://prntscr.com/it47mt
I have used this option on this page – http://prntscr.com/it495c
and now using custom breadcrumbs on this page with shortcode
/* show custom bread_crumb and title */
add_shortcode( 'bread_crumb', 'avia_title' );
I have hide the default breadcrumbs with custom css and show only my custom breadcrumbs
.amg-custom-breadcrumb .stretch_full.container_wrap.alternate_color.dark_bg_color.empty_title.title_container{
display: block !important;
background: transparent;
}
.stretch_full.container_wrap.alternate_color.dark_bg_color.empty_title.title_container,
.amg-custom-breadcrumb .breadcrumb .breadcrumb-trail .trail-before {
display: none;
}
Please give me suggestions, how to show breadcrumbs when Header transparent
Hey almondmike_a,
Thank you for using Enfold.
Add a text or code block element after the slider then use the breadcrumb shortcode that you’ve just created.
[bread_crumb]
Best regards,
Ismael
Thanks Ismael for your reply,
But I have already added the shortcode after slider – http://prntscr.com/iumtnl
Hi,
The shortcode works on our installation. Please try this filter in the functions.php file.
add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
function avf_header_setting_filter_mod($header) {
$header['header_title_bar'] = 'title_bar_breadcrumb';
return $header;
}
I tried to add it but I’m getting an error in the Appearance > Editor panel.
Best regards,
Ismael