Title: Featured Image is Clickable
Last modified: September 1, 2016

---

# Featured Image is Clickable

 *  Resolved [decblues](https://wordpress.org/support/users/decblues/)
 * (@decblues)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/)
 * Hi,
 * Post featured image is clickable, linking to the same post. How to disable this?
 * In Firebug >
    Currently : <a class=”tc-rectangular-thumb” title=”Post Title Here”
   href=”[http://mysite.com/postidhere/&#8221](http://mysite.com/postidhere/&#8221);
 * If I remove the href= ..
    <a class=”tc-rectangular-thumb” title=”Post Title Here”
 * The featured image is not clickable now but how to disable this href=”” in theme?
 * any CSS code or filters ? Please help.
 * Thank you very much.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Thread Starter [decblues](https://wordpress.org/support/users/decblues/)
 * (@decblues)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/#post-7700325)
 * I added
 * pointer-events: none;
 * in CSS to disable linking in browser but this only disables clicking, not the
   actual link itself.
 * is there any other workaround for this?
 *  [Menaka S.](https://wordpress.org/support/users/menakas/)
 * (@menakas)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/#post-7700355)
 * Hi,
    Add this to your child theme’s functions,php
 *     ```
       add_filter('tc_render_thumb_view' , 'my_disable_thumb_link');
       function my_disable_thumb_link($content) {
          return str_replace("href","data-url",$content);
       }
       ```
   
 *  Thread Starter [decblues](https://wordpress.org/support/users/decblues/)
 * (@decblues)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/#post-7700362)
 * Thank you very much Menaka S. 😀
 * Perfect 😉
 *  [Menaka S.](https://wordpress.org/support/users/menakas/)
 * (@menakas)
 * [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/#post-7700376)
 * Glad 🙂 Can you please mark this post as resolved?

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Featured Image is Clickable’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/customizr/4.4.24/screenshot.png)
 * Customizr
 * [Support Threads](https://wordpress.org/support/theme/customizr/)
 * [Active Topics](https://wordpress.org/support/theme/customizr/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/customizr/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/customizr/reviews/)

## Tags

 * [clickable](https://wordpress.org/support/topic-tag/clickable/)
 * [href](https://wordpress.org/support/topic-tag/href/)

 * 4 replies
 * 2 participants
 * Last reply from: [Menaka S.](https://wordpress.org/support/users/menakas/)
 * Last activity: [9 years, 8 months ago](https://wordpress.org/support/topic/featured-image-is-clickable/#post-7700376)
 * Status: resolved