Hi I am trying to remove date and comments from assignment listing from learndash plugin currently I have tried below code but it was not working. Any other suggestions will be very grateful
apply_filters( 'learndash-assignment-list-columns',
function( $columns ) {
// Unset columns
unset($columns['date']);
unset($columns['comments']);
// Always return $columns.
return $columns;
});