Showing tags in breadcrumbs doesn’t make sense (to me at least). It would be great to be able to hide them. This feature would be great! Maybe some has a css solution for this already?
Thanks
Showing tags in breadcrumbs doesn’t make sense (to me at least). It would be great to be able to hide them. This feature would be great! Maybe some has a css solution for this already?
Thanks
Could you get more specific? How to reproduce this?
Sorry, I’ll give it a try. Here is how. to reproduce it:
How would it help:
Maybe there is a simple CSS-solution. I didn’t find one though. I appreciate your help
You may try adding the following in file custom.js
:
const breads = document.getElementsByClassName("breadcrumb")
const breadObserver = new MutationObserver(function onMutated(){
Array.prototype.forEach.call(breads, (bread)=>{
bread.querySelectorAll("a span").forEach( (span)=>{
const nodes = span.childNodes
for (let i = nodes.length - 1; i > 0; i--) nodes[i].remove()
})
})
})
breadObserver.observe(document.getElementById("app-container"), {
attributes: true,
subtree: true,
attributeFilter: ["class"]
})
Thanks! Unfortunately it doesn’t work.
Sorry, it works to me.
Yeah, you’re right it works. Though, only if I move my mouse which is totally alright. Thanks a lot