Remove page itself breadcrumb in mobile views?

Created on 23 August 2019, over 5 years ago
Updated 27 June 2024, 9 months ago

Hi. I wonder if it's possible to include a checkbox to hide the current page in breadcrumb in order to show only sections or homepage in mobile views.

I think that could be more user friendly and not redundant.

Thanks for your time.

Feature request
Status

Closed: won't fix

Version

2.0

Component

Code

Created by

🇦🇷Argentina renguer0

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇩🇪Germany spuky

    Problem I see here is to know if it is a mobile view..
    which is not handled by PHP but you could do that in the CSS of your theme

    @media (max-width: 599px) {
    // remove the last child
    ol.breadcrumb > li:last-child {
        display: none;
    }
    // remove the > on the child before
    ol.breadcrumb > li:nth-last-child(2):after {
        display: none;
    }
    }
    

    your question was almost 5 years ago.. so I think it won't help you but maybe sombody thats googleling for a solution

    we could maybe provide different CSS libraries for common use cases so leaving the Feature request open.

    First question would be what use cases to cover

  • Status changed to Closed: won't fix 9 months ago
  • leymannx Berlin

    @spuky is totally right: This can't be fixed in PHP.

    I would leave representational subtleties to the themers. Maintaining opinionated CSS should be out of scope for Easy Breadcrumb.

  • 🇩🇪Germany spuky

    @leymannx thanks for preventing feature creep ;-)

Production build 0.71.5 2024