Viewing 15 replies - 1 through 15 (of 18 total)
  • Thread Starter Triptikon

    (@triptikon)

    and I want to know how to hide first chain on the main page of forum

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    @triptikon,

    so you want to hide the first and the last entry of the breadcrumbs? You could hide them using CSS, did you try that already?

    Thread Starter Triptikon

    (@triptikon)

    @qualmy91 The first entry should be hidden only on the main page of the forum. I understand that this can be done using css, but I cannot find the relevant points in the code. It just shows element

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    @triptikon

    But on the main page is only one element shown? Can you please tell me what exactly you want to hide. Maybe a screenshot would be helpful as well

    Thread Starter Triptikon

    (@triptikon)

    https://ibb.co/rkLDNhM – this is where I want to hide the highlighted. On the main page there must be no breadcrumbs or it must be Main site's page - Forum. And ideally – also swap the menu and breadcrumbs.

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    But the image that you share here doesn’t show the main page? You are already in a category and a forum?

    Thread Starter Triptikon

    (@triptikon)

    … I explain again: I need to hide the last link in the breadcrumbs, which is highlighted in the screenshot. And I also need to swap the menu and breadcrumbs. We’ll deal with the main page later

    Thread Starter Triptikon

    (@triptikon)

    @qualmy91 well?

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    @triptikon

    Sorry I was busy this week. Just to clarify: Are you searching for the CSS to change it or do you want to edit the source code?

    Thread Starter Triptikon

    (@triptikon)

    I’m searching for the CSS of your forum to change what I wrote above

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    Hey @triptikon,

    to remove the last link from a topic page you can use the following CSS:

    
    body.asgaros-forum-topic #forum-breadcrumbs > span:nth-child(7) {
        display: none !important;
    }
    

    And for the forum view:

    
    body.asgaros-forum-forum #forum-breadcrumbs > span:nth-child(5) {
        display: none !important;
    }
    
    Plugin Contributor Dominik Rauch

    (@qualmy91)

    If you want to change the order of the menu and the breadcrumbs you would have to hire a programmer. A programmer could also change the logic of the breadcrumbs and adjust the style (separators) as you want.

    Thread Starter Triptikon

    (@triptikon)

    in other words, you don’t know how to change the order of the menu and change the logic of the breadcrumbs?

    Thread Starter Triptikon

    (@triptikon)

    for the forum view doesn’t work – the link remains in place: https://ibb.co/XCqKCV2

    Plugin Contributor Dominik Rauch

    (@qualmy91)

    Hey @triptikon,

    for the forum overview you can use this CSS:

    
    body.asgaros-forum-overview #forum-breadcrumbs > span:nth-child(3) {
        display: none !important;
    }
    

    I know how to change the logic, but it is not as simple as just writing some CSS. You have to write another plugin and customize the breadcrumbs there. But I can’t offer this as free support, that’s why I advised you to search for a programmer for that.

Viewing 15 replies - 1 through 15 (of 18 total)
  • The topic ‘How to hide the last chain of breadcrumbs?’ is closed to new replies.