Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1340162

    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?

    #1340181

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.