How to Remove 'Edit with Wordpress'

How can I remove the ‘Edit with Wordpress’ option on a specific page? I experiemented doing this with a function in the functions.php but it removed the entire ability to ‘Edit with Pro’ as well.

We have a client who keeps accidently breaking a page on their site because they are clicking ‘Edit with Wordpress’.

Hello @santosfel5,

Thanks for writing in! “Edit with WordPress” is a WordPress default. You cannot delete it. It may be possible with custom development that is beyond the scope of our support already.

Regards.

I figured out how to do it. I just added this code to functions.php

add_action('admin_head', 'remove_edit_with_wordpress');

function remove_edit_with_wordpress() {
    echo '<style>
   .edit-post-header__toolbar button.components-button {
   display: none;
 }
    </style>';
}

Hello @santosfel5,

Glad that you were able to do the custom coding and find the proper solution for yourself. Please feel free to reach us if you have any more concern regarding our theme and theme settings.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.