• Resolved hmmclark

    (@hmmclark)


    Perhaps it is a version support issue but I’m finding this lovely plugin works on WP 3.3.1 with the exception of the sort order parameter.

    Here is the short code I am using:

    [jj-ngg-jquery-slider gallery=”8″ width=”762″ height=”313″ effect=fade controlNavThumbs=”true” directionNav=”true” order=”sortorder”]

    but the images are always random, alas.

    Am I doing something wrong? I’ve read and re-read the description and couldn’t find anything amiss.

    Thank you!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter hmmclark

    (@hmmclark)

    I’m an idiot … the plugin works great and this issue is closed.

    hello
    same problem for me, i’m surely an idiot but i dont find the solution…
    what did you change to make it work ?
    Thomas

    I changed mine to order=”filename” and it worked OK.

    Correction: order-“filename” is NOT working. Must have been a fluke. I think the proper syntax is order=”sortorder” and then the images should be ordered based on Nextgen Gallery sort order (under options) — but this is not true. If anyone has any ideas please let me (us) know.

    OK – I just figured out a hack. The shortcode should include order=”sortorder” and then modify the file jj_ngg_jquery_slider.php as follows:

    Change

    elseif($order == 'sortorder')
    {
    $sql_order = 'sortorder ASC';
    }

    to

    elseif($order == 'sortorder')
    {
    $sql_order = 'filename ASC';
    }

    I wanted my images sorted by filename hence the use of “filename” … feel free to experiment as needed…

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: JJ NextGen JQuery Slider sort order not working’ is closed to new replies.