Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1359029

    devolvejames
    Participant

    Hi There,

    I am using LearnDash plugin, along with Uncanny Owl to utilise some of its shortcodes – including [uo_breadcrumbs]. I wish to insert this into the breadcrumb div of the header.

    I have tried all ways I thought might work, please can you assist?

    Thank you.
    J

    #1359167

    Paul R
    Moderator

    Hi,

    You can try adding this in your child theme’s functions.php file.

    
    function x_breadcrumbs() {
        if ( x_get_option( 'x_breadcrumb_display' ) ) {
            echo do_shortcode('[uo_breadcrumbs]');
        }
    }
    

    Hope that helps.

    #1359422

    devolvejames
    Participant

    Hi Paul,

    Works pretty much perfectly, just need to tweak the formatting.

    Thank you, much appreciated!

    J

    #1359579

    Joao
    Moderator

    Glad to hear it, cheers!