Viewing 2 replies - 1 through 2 (of 2 total)
  • No luck here. It just flat out doesn’t work. I’ve even turned off all other plugins. All other Link options work. Trying it via shortcode doesn’t work, either.

    I had the same problem, to fix it go to admin control panel, click plugins, under plugins select editor, in the select plugin to edit section select Easy Image Display.

    There will now be code displayed for sb-easy-image-display.php

    Find the following code –

    return do_shortcode( '[sb_gallery columns="' . $args['columns'] . '" ids="' . $ids . '" size="' . strtolower( $args['size'] ) . '" link="' . strtolower( $args['link'] ) . '" url="' . strtolower( $args['url'] ) . ' captions="' . strtolower( $args['captions'] ) . '"]' );

    Change it to –

    return do_shortcode( '[sb_gallery columns="' . $args['columns'] . '" ids="' . $ids . '" size="' . strtolower( $args['size'] ) . '" link="' . strtolower( $args['link'] ) . '" url="' . strtolower( $args['url'] ) . '" captions="' . strtolower( $args['captions'] ) . '"]' );

    A ” was missed out in the url part, hope this helps.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Image linking to URL’ is closed to new replies.