Forum Replies Created

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)