I'm trying to create a clickable image on the blank sidebox. So far I have this code on the tpl_blank_sidebox.php
$content .= '<center>
<a target="_blank" href="'.MODULE_PINKBUTTERFLY_URL . '">' .
zen_image(DIR_WS_TEMPLATE_IMAGES . MODULE_PINKBUTTERFLY_IMAGE_FILENAME, MODULE_MEMBER_ALT_TEXT ) .
'</a>
</center>';
I have defined MODULE_PINKBUTTERFLY_IMAGE_FILENAME on the same file on the topmost portion along with the url. Here is how I defined it:
define('MODULE_PINKFLOWER_IMAGE_FILENAME', 'pinkflower.jpg');
However when the sidebox goes live, all I see is the alt text but the clickable link works. How do I get the image to show up?
Thanks!



