<blockquote>is it possible to have the images on the frontpage from the JA news module to link to the article?? because i’m using my images bigger, it is very logical interface wise to have the user click on the image for the article?
cheers…</blockquote>
Open file: modules/mod_janews.php and find lines:
[PHP]echo $image. “n”;
echo “<a href=”$link” class=”ja-newstitle” title=””.($showintro ? $row->title : $row->introtext1).””>{$row->title}</a>n”;[/PHP]
Replace with:
[PHP]echo “<a href=”$link” class=”ja-newstitle” title=””.($showintro ? $row->title : $row->introtext1).””>”.$image. “n</a>n”;
echo “<a href=”$link” class=”ja-newstitle” title=””.($showintro ? $row->title : $row->introtext1).””>{$row->title}</a>n”;[/PHP]