Hi @mkalina
Right now GutenBooster has no native breadcrumbs but you’d need to add that in your theme using shortcodes.
I would suggest creating a child theme for that.
And please let me know if you need a guideline for properly creating GutenBooster child theme and I’ll provide the steps.
Thanks!
Onur
Yes, please (child theme)! Bc I ran into some rather unpleasant issues when simply working with functions.php and style.css. (And thanks for the quick reply.)
No problem 🙂
Ok here’s how to create a child theme:
– Create a functions.php file and enqueue styles like as follows:
/**
* Define Constants
*/
define( 'CHILD_THEME_GBCHILD_VERSION', '1.0.0' );
add_action( 'wp_enqueue_scripts', 'enqueue_parent_styles', 1 );
function enqueue_parent_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css', array('bootstrap'), CHILD_THEME_GBCHILD_VERSION, 'all' );
}
Also remember creating a style.css file for your child theme: https://a.cl.ly/04ug994p
I hope this helps.
Thanks!
Onur