Hi, we have masonry galleries all over our site. For instance: https://gaylemartz.com/portfolio-item/h-more-photos-2-cute-dog-pictures/
With the most recent updates to the theme and wordpress we notice they can no longer by reordered by dragging and dropping. I wonder if you can test this and see if it’s an issue with the theme . Troubleshooting by turning off all plugins has no effect.
Thanks,
Tony
Hey tonyiatridis,
Thank you for the inquiry.
This issue will be fixed on WordPress 5.9.1. For the meantime, you have to add this code in the functions.php file to enable the gallery sorting back.
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,
Ismael