I want to hide the "Action" button on the Knowledge Portal

bonsai
Mega Sage

I would like to hide the "Action" button on the knowledge portal screen.
Is this possible?
I would like to prevent knowledge record creation from the portal screen.

 

kb_acrion_button.JPG

1 ACCEPTED SOLUTION

Shruti
Mega Sage
Mega Sage

Hi

Go to the Knowledge Bases browse widget -> Press Ctrl+right click on the widget -> Go to instance in page editor

Shruti_0-1738302125931.png

Paste it to CSS section and save it

 

.kb-browse-section .vertical-divider{

border-right: none !important;

}

.kb-browse-section .kb-action-btns{

display: none !important;

}

 

View solution in original post

2 REPLIES 2

Shruti
Mega Sage
Mega Sage

Hi

Go to the Knowledge Bases browse widget -> Press Ctrl+right click on the widget -> Go to instance in page editor

Shruti_0-1738302125931.png

Paste it to CSS section and save it

 

.kb-browse-section .vertical-divider{

border-right: none !important;

}

.kb-browse-section .kb-action-btns{

display: none !important;

}

 

bonsai
Mega Sage

It's completely gone! Thank you so much!