Hide programs tab

Hello

Is there a way to hide the programs tab in my configuration? we will not be using this feature at the moment and current the page just links to an error which does not look good.

Hope someone can point me in the right direction!

Hi @tech_mil!

Currently as of Redwood, it’s only possible by editing the MFE, as far as I know. The Progress tab is hardcoded.

Or you might try with a bit of CSS like:

header :nth-child(3) {
    display: none;
}

Thank you, I added this code to my overrides in the edx-brand module and it worked perfectly!

1 Like