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:
Code: [Select]
', $item['file']['image']['link'], '
Replace with:Code: [Select]
<a href="' . $item['topic']['href'] . '">', $item['file']['image']['thumb'], '</a>
Want the images to be smaller? Use...