Hey yonikachlon,
You can do this with some custom javascript for the feed. I’ll give you two options that might work well for you. First, go to the Settings page, “Customize” tab, and scroll down to the “Custom Javascript” area. Paste in one of these two code snippets:
1)
jQuery('.sbi_photo').attr('href', 'https://www.smashballoon.com');
2)
jQuery('.sbi_photo').removeAttr('href');
The first snippet, “1”, will change the link to go to the url also in the code. You could set this to link to another part of your site if you wanted.
The second snippet, “2”, will disable the linking part of the post all together.
Let me know if you have any questions about this.