• Resolved brochite

    (@brochite)


    Hello,

    Love the plugin! I was using my own code for this previously, and this makes things uniform and will save a bunch of time. Thank you!

    The only thing I hate is having a duplicate Last Modified column in my Posts and Pages admin view. I tried a bunch of names, including last_modified, and none of them were correct.

    I have the code that can remove columns from these views, see below, but I can’t seem to find the name of either the original last modified or your plugin’s enhanced last modified column.

    Since I’m always the author of my columns, I really don’t need your new column, but I’m fine to get rid of the original last modified column instead.

    Thanks!

    add_filter('manage_post_posts_columns', function ( $columns ) 
    // Removes unwanted columns from the posts admin view //		   
    {
        unset($columns['tags'], $columns['last_modified'], $columns['comments']);
        return $columns;
    } );
Viewing 1 replies (of 1 total)
  • Thread Starter brochite

    (@brochite)

    This was caused by a separate plugin, I think. I resolved the topic since I couldn’t find a way to delete it.

Viewing 1 replies (of 1 total)
  • The topic ‘How to Remove Duplicate Timestamp from Post and Page Admin Panel’ is closed to new replies.