• Resolved Michael

    (@mkalina)


    Hi, I would like to use a breadcrumb (the one Yoast or RankMath offer) on my site. How would I do that with GutenBooster _without_ having to insert a shortcode or something on every single page?

Viewing 3 replies - 1 through 3 (of 3 total)
  • 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

    Thread Starter Michael

    (@mkalina)

    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

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Breadcrumb’ is closed to new replies.