Want the images in the recent image attachments block in Simple Portal to link to the post instead of the actual larger attachment?
In PortalBlocks.php
Find:
', $item['file']['image']['link'], '
Replace with:
<a href="' . $item['topic']['href'] . '">', $item['file']['image']['thumb'], '</a>
Want the images to be smaller? Use the below fix instead and set the size of 175 to what you want.
Find:
', $item['file']['image']['link'], '
Replace with:
<a href="' . $item['topic']['href'] . '">', str_replace('<img', '<img height="175"', $item['file']['image']['thumb']), '</a>
Note: Attachment to this post is PortalBlocks.php for version 2.3.7 already modified to link to images and set to a width of 175.