Hide drill here and copy link buttons

i am trying to hide the drill here and copy link buttons
image

i added this to the CSS Custom Code section,

.poch-application-container .poch-toolbar__controls {
display: none !important;
}

however they are still displayed. any pointers?

@Jeniffer_Rivera you can remove the toolbar buttons by adding the following JavaScript to your configuration wizard:

api.onLoadingFinished(() => {
    let toolbarElements = document.getElementsByClassName('poch-toolbar');
    while(toolbarElements.length > 0){
        toolbarElements[0].parentNode.removeChild(toolbarElements[0]);
    }
});
1 Like