How can I hide or not call this block? #4527
-
Hello. I successfully use the render to separate the categories of blockmanager/blocks but it seems there is another calling the block manager/blocks(see the pic below for reference) And now i want it to hide without affecting the rendered block/s that i made. How to do it without affecting the rendered blocks ? (please refer to image below thanks!) here is the pastebin of may javascript used : |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
nvm. i just used
or you can add it on css
|
Beta Was this translation helpful? Give feedback.
nvm.
i just used
function myfunction() { $(".gjs-block-categories").css("display","none"); }setTimeout(myfunction, 500);
or you can add it on css
.gjs-block-categories { display: none; }