tropiland Posted April 22, 2008 Posted April 22, 2008 Hello to all, I have created a box with a link to the Advanced Search page. However, this is what the box looks like: The new box is called "searchplus.php" and here is the code: <!-- searchplus //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_SEARCHPLUS); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_ADVANCED_SEARCH) . '">' . BOX_SEARCHPLUS_ADVANCED_SEARCH . '</a>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- SEARCHPLUS_eof //--> What an I doing wrong and how do I get the link text into the box display "Click Here To Refine Your Property Search"? P.S. The link works! It's just the link text that is wrong. Thank you in advance for your time and consideration. Dimitri "Greco"
FIMBLE Posted April 22, 2008 Posted April 22, 2008 You need to add a reference to it in english .php Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
FIMBLE Posted April 22, 2008 Posted April 22, 2008 define('BOX_HEADING_SEARCHPLUS', 'Click Here To Refine Your Property Search'); Like this Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
FIMBLE Posted April 22, 2008 Posted April 22, 2008 define('BOX_SEARCHPLUS_TEXT', 'Click Here To Refine Your Property Search'); or this! Sometimes you're the dog and sometimes the lamp post [/url] My Contributions
Recommended Posts
Archived
This topic is now archived and is closed to further replies.