• mindyandy

    (@mindyandy)


    I’m really enjoying the FooGallery plugin!

    My problem is that I have installed Enhanced Media Library so that I can attach tags/categories to images and sort those images according to the tags/categories. The idea was to make it easier to sort through the large number of images in the media library, thus making the process of gallery-making much easier.

    Unfortunately, when I choose to make a new FooGallery, the option to sort via the Enhance Media Library is not available.

    Is there anything you can do to FooGallery to make the Enhanced Media Library options available for making a gallery? Or am I missing a setting somewhere? I notice that the Meta Slider allows the *sortable* media to be seen.

    • This topic was modified 8 years ago by mindyandy.
Viewing 1 replies (of 1 total)
  • in wp-content/plugins/foogallery/js/admin-foogallery.js
    uncomment //frame: ‘post’,
    replace FOOGALLERY.media_uploader.on( ‘select’, function() {
    with FOOGALLERY.media_uploader.on( ‘insert’, function() {

    here’s the snippet
    // Create the media frame.
    FOOGALLERY.media_uploader = wp.media.frames.file_frame = wp.media({
    title: FOOGALLERY.mediaModalTitle,
    frame: ‘post’,
    button: {
    text: FOOGALLERY.mediaModalButtonText
    },
    multiple: ‘add’, // Set to allow multiple files to be selected
    toolbar: ‘select’
    });

    // When an image is selected, run a callback.
    FOOGALLERY.media_uploader
    .on( ‘insert’, function() {

Viewing 1 replies (of 1 total)
  • The topic ‘FooGallery and Enhanced Media Library’ is closed to new replies.