Hi,
I agree that those info are important but they’re not really necessary when editing a post or page. Please remove the previous code and then replace them with the following hook.
Here’s how it should look afterwards: https://imgur.com/a/sLiw2eJ
add_action('admin_head', 'custom_admin');
function custom_admin() {
echo '<style>
@media screen and (max-width: 782px) {
.wp-list-table tr:not(.inline-edit-row):not(.no-items) {
display: flex;
}
.wp-list-table tr:not(.inline-edit-row):not(.no-items) .avia-image.column-avia-image {
display: none !important;
}
.wp-list-table .is-expanded .row-actions {
display: block !important;
position: static !important;
}
}
</style>';
}
Best regards,
Ismael