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

    (@mtekk)

    From what I can tell, it looks like something is modifying the $post global variable before Breadcrumb NavXT runs. This is causing the breadcrumb trail to be generated for the first product displayed rather than the correct breadcrumb trail.

    As how to work around this issue, you can either track down what is modifying the $post variable, or you could try placing wp_reset_query() before your call to bcn_display().

    Thread Starter Nativum

    (@nativum)

    Hello John,

    thanks for your reply.

    I have tried to place wp_reset_query() before calling bcn_display() in the header.php like this:

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

    But it dosen’t work. Hmmm, I am really confused, please could you help me out.

    Thanks a lot,

    regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Breadcrumb on the category page!’ is closed to new replies.