Tagged: gallery
There was a problem with changing the order of photos in the gallery.
Previously, when entering the gallery, you could manually move the photos to any place.
Is this problem due to WP or Enfold?
Hey creativeopole,
That is a WordPress core problem and will be fixed in the next update. Please try this in your functions.php file for a temporary fix:
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