Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1422062

    Hello,
    after a theme upgrade to version 5.5.6, I have the problem that the breadcrumb navigation is disappeared on the pages (In the articles it works fine).
    I only see the shortcode [av_breadcrumbs].

    Please check: https://hip-ingenieure.de/leistungen

    I don’t use a child theme.

    What can I do?

    Best regards,
    Matt

    #1422100

    Hey Mathias,

    Thank you for the inquiry.

    It is possible that the function for the av_breadcrumbs shortcode has been removed after the update since you’re not using a child theme. You may need to add it back manually in the functions.php file.

    function av_breadcrumbs_shortcode( $atts ) {
    	return Avia_Breadcrumb_Trail()->get_trail( array( 'separator' => '/', 'richsnippet' => true ) );
    }
    add_shortcode( 'av_breadcrumbs', 'av_breadcrumbs_shortcode' );
    

    We recommend activating a child theme to keep the modifications after an update.

    // https://kriesi.at/documentation/enfold/child-theme/

    Best regards,
    Ismael

    #1422816

    Thank you, Ismael.

    #1422860

    Hi,

    No problem! Glad we could be of help. Please do not hesitate to open another thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Breadcrumb menu issue after theme update 5.5.6 in pages’ is closed to new replies.