Hi Dear Support Team,
Can you advice if i would like to swap the bar between breadcrumb and my custom sub menu?
Please check on this > http://prntscr.com/biktpz . Thanks.
Hey kally_chong!
Please refer to this post – http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
Cheers!
Yigit
Hi,
Noted with thanks.
Hey!
You are welcome! Let us know if you have any other questions or issues!
Cheers!
Yigit
Hi,
Quick question regarding these steps. http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/
But I don’t seem to make it work. Do need to copy this: add_shortcode( ‘bread_crumb’, ‘avia_title’ );
to the child theme of the whole scrip regarding the breadcrumbs? I am not sure where it actually closes.
Hope you can help.
Thanks,
D.
Hi,
Place the code in the functions.php file:
add_shortcode( 'avs_bread_crumb', 'avia_title' );
If you don’t want to include the title, add this:
// remove title
add_filter('avf_title_args', function($args) {
$args['html'] = "<div class='{class} title_container'><div class='container'>{additions}</div></div>";
return $args;
});
Use the shortcode anywhere you want:
[avs_bread_crumb]
Best regards,
Ismael
Thank you so much!