Remove "🏠 Forum" from Index.
Quote from Lexiture on July 6, 2020, 8:38 pmHello.
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.
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.
Quote from qualmy91 on July 8, 2020, 3:43 amHey @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; }
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;
}
Quote from Lexiture on July 8, 2020, 1:51 pmQuote from qualmy91 on July 8, 2020, 3:43 amHey @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.
Quote from qualmy91 on July 8, 2020, 3:43 amHey @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.
Quote from qualmy91 on July 8, 2020, 2:26 pmHey @lexiture,
to remove it only at the overview you can add
.asgaros-forum-overviewto 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.
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.
Quote from Lexiture on July 8, 2020, 3:36 pmQuote from qualmy91 on July 8, 2020, 2:26 pmHey @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.
Quote from qualmy91 on July 8, 2020, 2:26 pmHey @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.
