Viewing 1 replies (of 1 total)
  • Add the following in your Child-Themes function.php, your custom plugin or via Code Snippet-plugin:

    function my_page_row_actions( $actions, $post ) {
        unset($actions['view']);
        return $actions;
    }
    add_filter('page_row_actions', 'my_page_row_actions', 10, 2);
    add_filter('post_row_actions', 'my_page_row_actions', 10, 2);
Viewing 1 replies (of 1 total)
  • The topic ‘Remove View’ is closed to new replies.