Since I updated enfold to the latest version I am no longer able to sort the images in the masonry gallery. Downgrading to WP 5.8 sorting works. When will you release a version compatible with WP 5.9?
Hey dafcom,
Please try this in your functions.php file:
function ava_custom_css_admin_mod() {
echo '<style>
.wp-core-ui .attachments:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
</style>';
}
add_action('admin_head', 'ava_custom_css_admin_mod');
Best regards,
Rikard