sjo007
(Stephen)
March 6, 2016, 8:25am
1
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
bencarlo
(Ben Carlo)
March 7, 2016, 7:48am
2
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
Danny
(Danny Holt)
March 7, 2016, 1:43pm
4
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.
Thanks,
Danny
sjo007
(Stephen)
March 7, 2016, 2:28pm
5
Many thanks Danny - the CSS option worked a treat !
Thanks once again for the help.
Stephen
Danny
(Danny Holt)
March 8, 2016, 12:22pm
6
No problem, Stephen. Happy to hear your issue has been resolved.
Thanks,
Danny