BuddyBoss Home – Web Support Forums Themes Boss. theme Clickable/Linkable Slide Images in Boss Slider

Viewing 4 posts - 1 through 4 (of 4 total)
  • Question

    #38385
    @malecare

    Is there a way to make the featured images/slide in the slide, clickable? I’ve searched through this support forum and the wordpress support forms, and find myself more and more confused. I would like people to be able to hover their cursor, or, on mobile, their finger, over a slide image, click on it to link the image to a new page…much as the button does.

    Answers

    #38441

    Alyssa
    Participant
    @alyssa-buddyboss

    @malecare try adding this to functions.php

    function click_slider_picture(){
    	?>
    <script>
    $('.slide_content').click(function() {
      window.location = $( this ).find( 'a' ).attr( 'href' );
    });
      </script>
    <?
      }
    add_action('wp_footer','click_slider_picture',99999);
    #38740
    @malecare

    Thanks

    #38772

    Alyssa
    Participant
    @alyssa-buddyboss

    I’ll leave this open just in case you run into any issues.

Viewing 4 posts - 1 through 4 (of 4 total)
  • The question ‘Clickable/Linkable Slide Images in Boss Slider’ is closed to new replies.