2
You have to alter line 9 of xreaggregator/blocks/xreaggregator_block.html currently the [a] is pointing to the form but I will show you the change:
Currently:
le="color: #000000"><?php <a href="<{$site_url}>" target="_blank"><{$site_name}></a><br /> <{if $image.url != ""}> <img src="<{$image.url}>" width="<{$image.width|default:88}>" height="<{$image.height|default:31}>" alt="<{$image.title}>" /><br /> <{/if}> <ul> <{section name=i loop=$items}> <{if $items[i].title != ""}> <li><a href="<{$xoops_url}>/modules/xreaggregator/index.php?id=<{$site_id}>#<{$items[i].link}>"><{$items[i].title}></a></li> <{/if}> <{/section}> </ul>
So it goes directly to the source of the article:
le="color: #000000"><?php <a href="<{$site_url}>" target="_blank"><{$site_name}></a><br /> <{if $image.url != ""}> <img src="<{$image.url}>" width="<{$image.width|default:88}>" height="<{$image.height|default:31}>" alt="<{$image.title}>" /><br /> <{/if}> <ul> <{section name=i loop=$items}> <{if $items[i].title != ""}> <li><a href="<{$items[i].link}>"><{$items[i].title}></a></li> <{/if}> <{/section}> </ul>