Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1333644

    After updating Enfold, the page went drummed up and I get a fatal error. A link in a private message.

    • This topic was modified 2 years, 11 months ago by creativeopole.
    #1333661

    Problem solved. After updating Enfold, it turned out that the code responsible for displaying your own breadcrumb was the problem.

    function av_breadcrumbs_shortcode( $atts ) {
    return avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));

    should be replaced with the new code given on the website: https://kriesi.at/documentation/enfold/breadcrumbs/

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

    Everything is back to normal and displays properly.

    #1333700

    Hi,

    Glad to know that you managed to find the latest snippet. Thanks for sharing. Please feel free to open another thread if you have more questions. We will close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘The problem after updating to version 4.8.8.1’ is closed to new replies.