Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1478146

    Hello,

    I have the following issue:

    I have pages structured hierarchically. For example: …/infos/tournee
    When I open the “Tournee” page, the breadcrumb displays:
    You are here: Home / Infos / Tournee
    The “Infos” page is empty and should remain empty. It only exists to structure the URL but should not be accessible.

    I need to remove the “Infos” part from the breadcrumb while keeping the correct structure.

    How can I achieve this?

    Best regards,
    marcus

    #1478187

    Hey MarcusJeroch,

    Thank you for the inquiry.

    You can try this css code to disable the link of the second trail:

    div .breadcrumb-trail span:nth-child(4) span a {
        pointer-events: none;
    }

    If you want to completely hide it, use this instead:

    div .breadcrumb-trail span:nth-child(4) {
        display: none;
    }

    Best regards,
    Ismael

    #1478229

    I like to get the php for my functions.php, please.

    Addendum:
    How do i remove the category from the breadcrumb when i use pages to show “posts from category X”?

    marcus

    #1478311

    Here the HTML to explain the issue (stripped from classes & itempops):

    <div><div><span><span>Du bist hier:</span></span> <span><span><span>Startseite</span><span>1</span></span></span> <span>/</span>
    <span><span><span>Testartikel</span><span>2</span></span></span> <span >/</span> <span >
    <span><span>Tester</span>
    <span>3</span></span></span> <span>/</span> <span>Testartikel</span></div></div>

    The “category” has to be removed

    #1478424

    Hi,

    The “Infos” page is empty and should remain empty. It only exists to structure the URL but should not be accessible.
    I need to remove the “Infos” part from the breadcrumb while keeping the correct structure.

    To clarify, are you trying to hide the trail or just make it inaccessible? If you want to make it inaccessible, please use the css code above. However, if you want to completely remove the trail, add this code to the functions.php file:

    function ava_breadcrumbs_trail_mod( $trail, $args ) {
    	if ( is_single() ) {
                    unset ($trail[2]);
    	}
    	return $trail;
    }
    add_filter( 'avia_breadcrumbs_trail', 'ava_breadcrumbs_trail_mod', 50, 2 );
    

    Best regards,
    Ismael

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.