Please or Register to create posts and topics.

Remove "🏠 Forum" from Index.

Hello.

First of all thank you for making this plugin. It’s exactly what I needed.

I was wondering if it’s possible to disable the “🏠 Forum”  link from index? In one of my PhPBB3 forums I was able to delete it from Index and make it visible on /showthread/showforum/showtopic/etc.

Due to the design of my site it doesn’t make sense to have that on the main page

Thanks in advance.

 

Hey @lexiture,

you can use some custom CSS code to adjust this:

/* Hide the Home Symbol */
#forum-breadcrumbs > span:nth-child(2) {
    display: none !important;
}

/* Hide the first entry of the Breadcrumb - Forum Name */
#forum-breadcrumbs > span:nth-child(3) {
    display: none !important;
}

 

Asgaros, Lexiture and cyngrrl have reacted to this post.
AsgarosLexiturecyngrrl
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.
Quote from qualmy91 on July 8, 2020, 3:43 am

Hey @lexiture,

you can use some custom CSS code to adjust this:

/* Hide the Home Symbol */
#forum-breadcrumbs > span:nth-child(2) {
    display: none !important;
}

/* Hide the first entry of the Breadcrumb - Forum Name */
#forum-breadcrumbs > span:nth-child(3) {
    display: none !important;
}

 

Thanks for your help, the css code hides the first entry of breadcrumbs from every section of the forum.

What I wanted to do was to hide breadcrumbs only from index and still making them when browsing a topic or my profile for example.

I assume this isn’t possible, thank you anyways.

 

 

Hey @lexiture,

to remove it only at the overview  you can add .asgaros-forum-overview  to the selector like this:

/* Hide the Home Symbol from overview page */
.asgaros-forum-overview #forum-breadcrumbs span:nth-child(2) {
    display: none !important;
}

/* Hide the first entry of the Breadcrumb - Forum Name - from overview page */
.asgaros-forum-overview  #forum-breadcrumbs span:nth-child(3) {
    display: none !important;
}

There are different classes added to the body tag for every view of the Forum. So you are really flexible with your CSS adjustments.

Asgaros, Lexiture and cyngrrl have reacted to this post.
AsgarosLexiturecyngrrl
Need professional help with Asgaros Forum? Book an appointment with us at domra Web Solutions for setup and customization services. Learn more about our Toolbox for Asgaros Forum plugin to enhance your forum experience.
Quote from qualmy91 on July 8, 2020, 2:26 pm

Hey @lexiture,

to remove it only at the overview  you can add .asgaros-forum-overview .asgaros-forum-overview  to the selector like this:

/* Hide the Home Symbol from overview page */
.asgaros-forum-overview #forum-breadcrumbs span:nth-child(2) {
    display: none !important;
}

/* Hide the first entry of the Breadcrumb - Forum Name - from overview page */
.asgaros-forum-overview  #forum-breadcrumbs span:nth-child(3) {
    display: none !important;
}

There are different classes added to the body tag for every view of the Forum. So you are really flexible with your CSS adjustments.

Understood. Thank you.