Remove Link on Featured Image

Hi,

Using the BB theme and the blog module. I would like to remove the link on the Featured Image that is on my post please. My post appears via the blog module on a page - and I don’t want users to click on the featured image to go to my blog. Is this possible please ?

Many thanks

Stephen

Hey Stephen,

That should be possible with a simple jQuery code. Do you think you can share the URL of the page in question so we can take a look?

Ben

[Content Hidden]

Hi Stephen,

You can either use CSS to accomplish this:

.fl-post-feed-image-beside .fl-post-feed-image {
    cursor: default;
    pointer-events: none;
}

Or use jQuery:

jQuery(document).ready(function() {
  jQuery('.fl-post-feed-image a').bind('click', false).css('cursor', 'default');
});

The choice is entirely up to you. :smiley:

Thanks,
Danny

Many thanks Danny - the CSS option worked a treat !

Thanks once again for the help.

Stephen

No problem, Stephen. Happy to hear your issue has been resolved.

Thanks,
Danny