By Stephen Crewson on Wednesday, 24 December 2014
Posted in General Issues
Likes 0
Views 870
Votes 0
No rush on this at all. I've tried to add the following code to bring in the ALT tags for the module images but I keep getting an error. I'm wondering what I might be missing?

<img src="<?php echo $post->getImage()->getSource('module');?>" alt="<?php echo $this->escape( $row->title );?>" </a>


Thanks again.
Hello Stephen,

You should use this :

<img src="<?php echo $post->getImage()->getSource('module');?>" alt="<?php echo $post->title;?>">
·
Wednesday, 24 December 2014 23:09
·
0 Likes
·
0 Votes
·
0 Comments
·
That did the job. Thanks Arlex!
·
Wednesday, 24 December 2014 23:28
·
0 Likes
·
0 Votes
·
0 Comments
·
hello Stephen Crewson,

You're welcome, glad to heard your issues resolved.
·
Wednesday, 24 December 2014 23:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post