Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save mlbd/777f1211b0a22998bbc6d7c5eb8f5b09 to your computer and use it in GitHub Desktop.
Save mlbd/777f1211b0a22998bbc6d7c5eb8f5b09 to your computer and use it in GitHub Desktop.
Hide the publish button in the Beaver Builder editor for users who do not have the ow_sign_off_step capability. Users who have the ow_sign_off_step capability should still be able to see the publish button.
add_action('admin_head', 'hide_bb_publish_button');
add_action('wp_head', 'hide_bb_publish_button');
function hide_bb_publish_button() {
if (!current_user_can('ow_sign_off_step')) {
echo '<style>
.fl-builder-actions .fl-builder-button.fl-builder-publish-button,
.fl-builder-button-group span.fl-builder-button[data-action="publish"] {
display: none;
}
</style>
';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment