Hi there,
I was wondering if there are any options to hide blocks completely in the bricks panel? I mean on the left when adding new blocks. As in all builder there are a lot of elements that I don’t use and probably won’t in the future or I want to hide them for the client because he should use the templates instead of the default blocks.
It’s okay to do this by code. For now I just hide them by CSS but that feels like a workaround. Maybe there is a better way.
/* Hide complete sections of blocks */
#bricks-panel-elements .category-general .bricks-add-element {
display: none !important;
}
/* Hide a single blocks */
#bricks-panel-elements .bricks-add-element[data-element-name="icon"] {
display: none !important;
}