9
Sorry, I'd need to see the template, and I'm gonna disconnect now and won't be back online till monday.
If you can wait, I'm sure it has a very easy solution. Paste here the template, if it's not me, sure someone will be able to help you.
But so to say, if you're using the code you pasted in a earlier post, this tag...
<{$story.imglink}>
Is the problem. This tag contains the IMAGE + the link, a bad idea some XOOPS coder have from time to time. A tag should never contain two items, no matter what they are, link and image should be separated.
Look in the smarty console for a tag that contains only the image, and another one that only contains the link to the article, then edit your template, so
<{$story.imglink}>
becomes
<{$story.image}>If you don't find any tag that contains only the image, you'll have to go yourself into the code, locate where is <{$story.imglink}> generated (look for "imglink" in the source), then add or modify the code to generate the tag you need.
Good luck.