BuddyBoss Home – Web Support Forums Solutions Social Learner Make homepages slides clickable?

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

    #56519
    @judeamedia

    Hello,

    Is it possible to make the homepage slides clickable as a whole? Instead of using a “Read More” button? I have already created images with text and buttons that I would like to use for the slides, but I can’t figure out how to make them clickable themselves.

    Thank you!

    -MJ

    Answers

    #57870
    @judeamedia

    I’m guessing it’s not possible? 🙁

    #58062

    Anonymous
    @

    Hi @judeamedia, To make the entire slider clickable please add this js in Boss theme’s custom js option.

    
    jQuery( document ).ready( function(){
        jQuery('.slide_content').click(function(){
         window.location=jQuery(this).find("a").attr("href");
             return false;
    }); 
    });
    

    and add the css in custom css option

    
    .bb-slider-container .slide_content {
      cursor: pointer;
    }
    

    Regards

    #58144
    @judeamedia

    Oh thank you so much for your reply! You have no idea how much better my site will look if I can use the Buddyboss slider!

    The click function works great! However, I’m not sure where to put the URLs. I put them in the “Give us a link” box, but they’re returning a 404.

    Thanks again for your help! 😀

    #58199

    Anonymous
    @

    Hi @judeamedia, Please see the attached screenshot to get the idea where to put the url.

    Regards

    #58219
    @judeamedia

    Hi @Pallavi,

    Thank you, but that is where I am putting the links and they are returning a 404 error with this code.

    -Michelle

    #58398

    Anonymous
    @

    Hi @judeamedia, Please attach a screen shot of your admin panel where you are adding the slider.

    Regards

    #58415
    @judeamedia

    Of course! Attached. 🙂

    #58616

    Anonymous
    @

    Hi @judeamedia, It is required to enter button text in slider. If you do not enter Slider title and description that is not required but url will work if you enter the value in button text.

    Regards

    #58664
    @judeamedia

    Thank you so much! It worked!

    Adding text to the button did create a button, though, so I had to add this code to custom CSS:

    .readmore {display:none!important;}

    I hope that doesn’t cause any issues on the rest of the site.

    Thank you so much for your help in getting this working! 🙂

    -Michelle

    #58771

    Anonymous
    @

    Great!..no that will not cause any issue.

    Regards

Viewing 11 posts - 1 through 11 (of 11 total)
  • The question ‘Make homepages slides clickable?’ is closed to new replies.