Viewing 3 replies - 1 through 3 (of 3 total)
  • Amie

    (@sunburntkamel)

    Should be possible, we’ll look into providing that option.

    We needed to do this too. Luckily, it’s an easy fix 🙂 .

    In flshow.php, head down to line 731. You should see:

    $slide_show->appendChild( $photo );

    Before it, simply add:

    $photo->setAttribute('target', '_self');

    That section should then look like:

    if( !empty( $flShow_link ) ) {
         $photo->setAttribute( 'href', $flShow_link );
    }
    $photo->setAttribute('target', '_self');
    $slide_show->appendChild( $photo );

    Note that this is a quick fix and will cause *all* of your links to open in the same window.

    Best regards,
    Matt Duffin.

    Sorry, forgot to mention that you’ll need to do something to cause your XML file to be rebuilt once this change has been made for each carousel, e.g. change a setting, upload a new image, etc.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: flshow Manager] flShow Manager: No popup window’ is closed to new replies.