Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author mansoormunib

    (@mansoormunib)

    What you can do is to edit the shortcode.php file according to your requirement

    Replace the following line of code from 99 to 111

    $out .= '<li>';
        $out .= '<div class="rsSliderWrap">';
            $out .= '<img src='.$imgSrc.' alt="'.$title.'" />';
            if($hide == false):
                $out .= '<div class="rsSliderContent">';
                    $out .= '<div><a href="'.$href.'" >'.$title.'</a></div>';
                    $out .= '<div>'.$description.'</div>';
                $out .= '</div>';
            endif;
        $out .= '</div>';
    $out .= '</li>';

    with following code

    $out .= '<li>';
        $out .= '<div class="rsSliderWrap"><a href="'.$href.'" >';
            $out .= '<img src='.$imgSrc.' alt="'.$title.'" />';
            if($hide == false):
                $out .= '<div class="rsSliderContent">';
                    $out .= '<div>'.$title.'</div>';
                    $out .= '<div>'.$description.'</div>';
                $out .= '</div>';
            endif;
        $out .= '</div></a>';
    $out .= '</li>';
    Plugin Author mansoormunib

    (@mansoormunib)

    I added up this in the Todo list and this will be added in future release.

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