• Resolved gaiadergi

    (@gaiadergi)


    Hello.. I’m using this theme on my andoid app and I dont want anybody to click any image. Is there any function to override this on all posts. Thanks.

Viewing 1 replies (of 1 total)
  • Hi,

    You are probably talking about featured images. You can actually try to use wmhook_entry_image_link filter hook to disable those via your child theme‘s functions.php file with this function:

    function child_theme_entry_image_link() {
      return false;
    } 
    
    add_filter( 'wmhook_entry_image_link', 'child_theme_entry_image_link' );
    

    Regards,

    Oliver

Viewing 1 replies (of 1 total)
  • The topic ‘Non-Clickable Images’ is closed to new replies.