Mark Administrator Staff member Jul 16, 2013 #2 sure, edit feed.php find PHP: <description><?php echo $row['description']; ?></description> replace with PHP: <description><?php echo $row['description']; ?><img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/></description>
sure, edit feed.php find PHP: <description><?php echo $row['description']; ?></description> replace with PHP: <description><?php echo $row['description']; ?><img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/></description>
D Doublezero New Member Jul 16, 2013 #3 Thanks. I had to put the code inside CDATA for it to show. PHP: <description><?php echo $row['description']; ?> <![CDATA[ <img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/> ]]> </description>
Thanks. I had to put the code inside CDATA for it to show. PHP: <description><?php echo $row['description']; ?> <![CDATA[ <img src="<?php echo $row['banner_url']; ?>" alt="<?php echo $row['title']; ?>"/> ]]> </description>