• Resolved win2158

    (@win2158)


    First: Thnx for the great NavXT breadcrumbs plugin!

    I want to hide the breadcrumbs for not registered users.
    Registered users however may see the breadcrumps. It has to do with the fact that I have a Woocommerce webshop and part of it is only for registered user, other parts are “hidden” for not registered user.

    Question: is it possible to hide/disable the breadcrumbs for non registered users? on all pages or certain pages?

    Thank you very much!

    https://wordpress.org/plugins/breadcrumb-navxt/

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

    (@mtekk)

    If you want to hide the entire breadcrumb trail, you will want to wrap the call to bcn_display() with an if statement that checks that the current user is logged in (such as checking is_user_logged_in(), or check the appropriate current_user_can() role/capability).

    If you want to hide just a specific breadcrumb in the trail from users that are not logged in, you will need to write a function that hooks into the bcn_after_fill action. You’ll want to check if the user is logged in as the first step (see previous paragraph for the two different functions you could use). Next, within this function you will need to loop around the items in the passed in the bcn_breadcrumb_trail object (the member breadcrumbs which is an array of bcn_breadcrumb objects). When you find the breadcrumb you want to remove, use unset to remove the breadcrumb. See https://github.com/mtekk/Breadcrumb-NavXT-BuddyPress-Extensions/blob/master/breadcrumb_navxt_buddypress.php for a reference of how to use bcn_after_fill and how to remove/inject breadcrumbs into a trail.

    Thread Starter win2158

    (@win2158)

    Thank you John for the quick response!

    I see what you mean and I’ll give it a try. I’ll keep you (and perhaps others with the samen question) posted.

    Best regards

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conditionally hide the breadcrumbs’ is closed to new replies.