|
I figured out how to change the image and change the shoutout box, but I’m having trouble changing the link. This is what I see:
<div class="box"> <?php if (strtolower(substr($this->getLinkUrl(),0,4))==='http'): ?> <a href="<?php echo $this->getLinkUrl() ?>"> <?php elseif($this->getLinkUrl()): ?> <a href="<?php echo $this->getUrl($this->getLinkUrl()) ?>"> <?php endif ?> <img src="<?php echo $this->getSkinUrl($this->getImgSrc()) ?>" width="195" alt="<?php echo $this->__($this->getImgAlt()) ?>" style="display:block;" /> <?php if ($this->getLinkUrl()): ?> </a> <?php endif ?> </div>
Im assuming it has something to do with $this->getLinkUrl().
Is there some place for me to store the link URL that is retrieved by this function?
|