• Resolved jnicol

    (@jnicol)


    When using the slim_seo_admin_columns_post filter to hide Slim Seo’s columns on posts, it removes the Meta Title and Meta Description columns, but not the Redirection column?

Viewing 1 replies (of 1 total)
  • Plugin Contributor bb

    (@doanducanh)

    Hi @jnicol ,

    Currently, the slim_seo_admin_columns_post filter doesn’t support removing the Redirect column.

    If you’d like to remove the Redirect column programmatically, you can use the WordPress manage_{$post_type}_posts_columns filter. For posts, for example:

    add_filter( 'manage_post_posts_columns', function( $columns ) {
        unset( $columns['redirect'] );
        return $columns;
    }, 10000 );

    Alternatively, you can hide the Redirect column by opening Screen Options at the top of the Posts screen and unchecking Redirect.

    Regards,

    • This reply was modified 6 days, 13 hours ago by bb.
    • This reply was modified 6 days, 13 hours ago by bb.
    • This reply was modified 6 days, 13 hours ago by bb.
Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.