• Hi there, drag and drop facility in Albums isn’t working. I’m using the latest WordPress 3.5.1 and 1.9.2 of Next Gen. I tried upgrading Next Gen but still got the problem. I also tried disabling all other plugins but still same issue.

    I read up that there has been some problems with this in the past, but none of the fixes have worked for me so far. Any help would be much appreciated.

    Thanks

    http://wordpress.org/extend/plugins/nextgen-gallery/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Do you use other javascripts on your page? Does your Theme require additonal javascript? Try it without this javascript. And try to load jquery from google in your header.php manually.
    That worked for me. Isnt a perfect solution but it works.

    Thread Starter k.melvin

    (@kmelvin)

    The albums work fine on the site itself, its in the admin section where it doesn’t work. Can’t drop galleries into an album.

    Thread Starter k.melvin

    (@kmelvin)

    error message in the javascript console: (load-scripts.php line 15)

    Uncaught TypeError: Object function ( name, base, prototype ) {
    var namespace = name.split( “.” )[ 0 ],
    fullName;
    name = name.split( “.” )[ 1 ];
    fullName = namespace + “-” + name;

    if ( !prototype ) {
    prototype = base;
    base = $.Widget;
    }

    // create selector for plugin
    $.expr[ “:” ][ fullName ] = function( elem ) {
    return !!$.data( elem, name );
    };

    $[ namespace ] = $[ namespace ] || {};
    $[ namespace ][ name ] = function( options, element ) {
    // allow instantiation without initializing for simple inheritance
    if ( arguments.length ) {
    this._createWidget( options, element );
    }
    };

    var basePrototype = new base();
    // we need to make the options hash a property directly on the new instance
    // otherwise we’ll modify the options hash on the prototype that we’re
    // inheriting from
    // $.each( basePrototype, function( key, val ) {
    // if ( $.isPlainObject(val) ) {
    // basePrototype[ key ] = $.extend( {}, val );
    // }
    // });
    basePrototype.options = $.extend( {}, basePrototype.options );
    $[ namespace ][ name ].prototype = $.extend( true, basePrototype, {
    namespace: namespace,
    widgetName: name,
    widgetEventPrefix: $[ namespace ][ name ].prototype.widgetEventPrefix || name,
    widgetBaseClass: fullName
    }, prototype );

    $.widget.bridge( name, $[ namespace ][ name ] );
    } has no method ‘extend’

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Album drag and drop not working’ is closed to new replies.