Post Carousel

Hi,

I am just using the Post Carousel as a client logo slider.

I really do not want the logo (featured image) to link to the post as i just want the logos to slide.

There doesn’t seem to be an option for this though.

How can i get the logos to slide but not link anywhere?

Thanks

Ian

Hey Ian,

Welcome to the BB forums! :slight_smile:

You are right in that there is no option for that. It is designed to showcase your blog entries so by default, it links to the single entry. I think a simple jQuery code will do it for you. What Post Carousel layout are you using?

Ben

[Content Hidden]

Hey Ian,

This jQuery snippet should fix you right up! This applies to all Posts Carousels on your site though. If you want, you can place a class name on that specific Post Carousel module and place if before the selector, e.g., if you place logo-carousel as the class, change the selector below to .logo-carouse a.fl-post-carousel-link.

jQuery(document).ready(function() {
  jQuery( "a.fl-post-carousel-link" ).removeAttr("href");
});

I don’t know if your theme offers a place for this. If it doesn’t and you’re not sure how to, you can check the link below.
http://stackoverflow.com/questions/11159860/how-do-i-add-a-simple-jquery-script-to-wordpress

Hope this helps!

Ben

Sorry for the delay in replying.

Specific class and your JQuery worked perfectly.

thanks again

Ian

Hey Ian,

No worries! Enjoy BB! :slight_smile:

Ben