MG 1.1 How to hide/remove "Most Albums" tab from Notable Members?

imthebest

Well-known member
Hi,

The way I'm currently doing that is by editing the template modification member_notable and removing the relevant block. The problem is that every time that I upgrade the Media Gallery my customization to the template modification gets lost (as designed).

Is there any other way to achieve this? Maybe a CSS trick?

Thanks,
Super120
 
Yeah, you could use CSS for this, though it would require some adjustment for your own environment and if you ever added any more add-ons with other tabs:

Code:
.member_notable .tabs li:nth-child(5)
{
    display: none;
}

That would hide the 5th tab on the notable members page.
 
Top Bottom