Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi, you can hide the button by adding the CSS code below in wp-admin / Appearance / Customize / Additional CSS panel.

    
    .adverts-manage-action-delete { display: none !important }
    

    Additionally, add in your theme functions.php file the code below so the button will not only be hidden but also not functional.

    
    add_action( "init", "disable_adverts_manage_delete", 1000 );
    function disable_adverts_manage_delete() {
        remove_action('wp_ajax_adverts_delete', 'adverts_delete');
    }
    
    Thread Starter Webbureau.dk

    (@twolle)

    Thanks Greg ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Disable delete button’ is closed to new replies.