XF 2.0 What is this component called?

No, it isn't in the navigation, it looks to me like it might s something in whats_new_wrapper template. But I could well be wrong.

I actually took out the whole What's New tab as I don't think it's necessary and clutters the main navigation., the new media stuff is all there anyway when people click on the media tab.
 
To remove those two links, add the following to your extra.less file:
Less:
// Remove media filters on Whats New page
body[data-template="whats_new"] .tabs-tab{
    &[href$="/whats-new/media/"],
    &[href$="/whats-new/media-comments/"]{
        display: none;
    }
}
 
To remove those two links, add the following to your extra.less file:
Less:
// Remove media filters on Whats New page
body[data-template="whats_new"] .tabs-tab{
    &[href$="/whats-new/media/"],
    &[href$="/whats-new/media-comments/"]{
        display: none;
    }
}
Excellent! It removes it from that area thanks.. how would I adjust for the other links (New Posts/Your News Feed/Latest Activity) ? Still getting used to this vs VB templates.

1536754715615.webp
 
In that case, delete my earlier code and use this instead:
Less:
.tabs-tab[href$="/whats-new/media/"],
.tabs-tab[href$="/whats-new/media-comments/"],
body[data-template="whats_new_posts"] .tabs-tab.is-active,
body[data-template="news_feed"] .tabs-tab.is-active,
body[data-template="latest_activity"] .tabs-tab.is-active{
    display: none;
}
 
In that case, delete my earlier code and use this instead:
Less:
.tabs-tab[href$="/whats-new/media/"],
.tabs-tab[href$="/whats-new/media-comments/"],
body[data-template="whats_new_posts"] .tabs-tab.is-active,
body[data-template="news_feed"] .tabs-tab.is-active,
body[data-template="latest_activity"] .tabs-tab.is-active{
    display: none;
}
Perfect thanks!.. I'm not sure I would have every figured/guessed that.. lol
 
Top Bottom