• Resolved decblues

    (@decblues)


    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=”https://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

    (@decblues)

    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?

    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

    (@decblues)

    Thank you very much Menaka S. ??

    Perfect ??

    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.