• Hi,

    When I desactivate Breadcrumb-Navxt all the pages that uses it on my website dont display their content.
    We only see blank pages. It only happens with pages that call Breadcrumb-Navxt.
    If I reactitave it all content appears again.
    Can someone help ?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author John Havlik

    (@mtekk)

    This is likely due to the plugin not being called correctly in your theme (if you enable WP_DEBUG you probably see a PHP error relating to bcn_display() not existing). Your call to bcn_display() should be surrounded with an if statement that checks that the bcn_display() function exists. For example you should be using something like:

    <?php if(function_exists('bcn_display'))
        {
            bcn_display();
        }?>

    for your calling code.

    Thread Starter evolyo

    (@evolyo)

    Hi John,

    Thanks for your answer. I will check that but what is strange is that it was working so far (the website is online since 1 year) and it started to bug 2 weeks ago.

    Plugin Author John Havlik

    (@mtekk)

    Since Breadcrumb NavXT hasn’t had an update in that timeframe, I would suspect something else changed. It could be a theme update, or an inadvertent change to how Breadcrumb NavXT is called in your theme that is resulting in this behavior.

    • This reply was modified 4 years, 11 months ago by John Havlik.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘breadcrumb-navxt hides all content’ is closed to new replies.