Support Forum » User Profile

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: NEWBIE Question or feature Request #44036
    Peter PinksterPeter Pinkster
    Participant

    making pousible to turn off the date column and actions will also be great to have a online line height row in wp-list-table ...much cleaner!!

    
    function remove_date_column($columns) {
        unset($columns['date']);
        return $columns;
    }
    
    add_filter('manage_potential_posts_columns', 'remove_date_column', 10, 1);
    
    function remove_all_relatie_post_row_actions($actions, $post) {
        if ('potential' === $post->post_type) {
            return array(); // Verwijdert alle row-actions
        }
        return $actions;
    }
    
    in reply to: Inline editing similar to an excel file #44018
    Peter PinksterPeter Pinkster
    Participant

    https://www.admincolumns.com/inline-editing/

    Hi, I am a new user of Metabox. inline Editing would be great!

Viewing 2 posts - 1 through 2 (of 2 total)