Hide few sections in advanced tab

Hi

Is it possible to hide few sections in the advanced tab or hide the advanced tab itself in a custom module.

Hey Kapil,

Thanks for posting! I transferred your post to the Custom Module Development Section. I’ve also assigned another member of the team to assist you with your concern. :slight_smile:

Ben

Hi Kapil,

That’s not possible with PHP, but you could hide them with some CSS in your module’s settings.css file. For example, in the Callout module, I can hide the tab like so…

.fl-builder-callout-settings a[href="#fl-builder-settings-tab-advanced"] { display:none; }

You can hide sections in a similar way…

.fl-builder-callout-settings #fl-builder-settings-section-margins { display:none; }

Justin

Alright thanks