
-
AuthorPosts
-
February 27, 2025 at 6:39 pm #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,
marcusFebruary 28, 2025 at 5:06 am #1478187Hey 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,
IsmaelFebruary 28, 2025 at 9:57 am #1478229I 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
March 1, 2025 at 12:21 pm #1478311Here 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
March 3, 2025 at 5:30 am #1478424Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.