boxtel 1 Posted May 16, 2005 If you get this text in your box: TEXT_NO_BUY_REASON then it means that you have not defined this text constant in your language files. define('TEXT_NO_BUY_REASON', 'If you don\'t buy...<br>Please tell us why<br>'); define('TEXT_TELL_US_WHY', 'Tell us Why'); Treasurer MFC Share this post Link to post Share on other sites
marc76uk 0 Posted May 16, 2005 If you get this text in your box:TEXT_NO_BUY_REASON then it means that you have not defined this text constant in your language files. define('TEXT_NO_BUY_REASON', 'If you don\'t buy...<br>Please tell us why<br>'); define('TEXT_TELL_US_WHY', 'Tell us Why'); <{POST_SNAPBACK}> Thats Excellent its now working thanks Amanda. I wonder if you could have a look at it and offer some advise on how to center the continue button and just have the box heading in blue my site is www.a1pcs.co.uk thanks again Share this post Link to post Share on other sites
marc76uk 0 Posted May 16, 2005 opps not all is working it all looks right but now when you click continue after typing your reason it will not send well it wont do anything :( Share this post Link to post Share on other sites
boxtel 1 Posted May 16, 2005 Thats Excellent its now working thanks Amanda. I wonder if you could have a look at it and offer some advise on how to center the continue button and just have the box heading in blue my site is www.a1pcs.co.uk thanks again <{POST_SNAPBACK}> well, then you need to add a header and transfer the text to it: change this : <tr><td> <?php $info_box_contents = array(); $info_box_contents[] = array('form' => tep_draw_form('tell_us_why', tep_href_link(basename($PHP_SELF),tep_get_all_get_params(array('language','action','currency','msg')).'msg=Y', 'NONSSL', false), 'POST'), 'align' => 'center', 'params' => 'style="color: #0066cc;"', 'text' => TEXT_NO_BUY_REASON . tep_draw_input_field('why', 'e.g. Just looking...', ' onfocus="this.value=\'\'" size="20" class="inputBox" ') . '<br>' . tep_image_submit('emailbutton.png', TEXT_TELL_US_WHY) . tep_hide_session_id()); new contentBox($info_box_contents); ?> </td></tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', 10); ?></td> </tr> to this : <tr><td> <?php $info_box_contents = array(); $info_box_contents[] = array('align' => 'left', 'text' => TEXT_NO_BUY_REASON ); new infoBoxHeading($info_box_contents, true, true); $info_box_contents = array(); $info_box_contents[] = array('form' => tep_draw_form('tell_us_why', tep_href_link(basename($PHP_SELF),tep_get_all_get_params(array('language','action','currency','msg')).'msg=Y', 'NONSSL', false), 'POST'), 'align' => 'center', 'params' => 'style="color: #0066cc;"', 'text' => tep_draw_input_field('why', 'e.g. Just looking...', ' onfocus="this.value=\'\'" size="20" class="inputBox" ') . '<br>' . tep_image_submit('emailbutton.png', TEXT_TELL_US_WHY) . tep_hide_session_id()); new contentBox($info_box_contents); ?> </td></tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', 10); ?></td> </tr> Treasurer MFC Share this post Link to post Share on other sites
marc76uk 0 Posted May 16, 2005 your a gem Amanda its all working fine and looks right as well thankyou sooooooooooo much ;D Share this post Link to post Share on other sites
roxanacaz 0 Posted May 16, 2005 "opps not all is working it all looks right but now when you click continue after typing your reason it will not send well it wont do anything " Same here... My Tiny Contribution - Romanian Buttons Share this post Link to post Share on other sites
roxanacaz 0 Posted May 16, 2005 Soooorry, it tool a while, but the email came. I should learn patience from some one I know...:) My Tiny Contribution - Romanian Buttons Share this post Link to post Share on other sites
dsl25 0 Posted December 19, 2005 Just installed latest version, looks not bad, but not receiving any mails... Any clues? Share this post Link to post Share on other sites
ahost 0 Posted January 20, 2006 Soooorry, it tool a while, but the email came. I should learn patience from some one I know...:) How long are we supposed to wait? Have followed the instructions as explained in the readme file, but still no e-mails are coming through when hitting the send button in the tell me why box. Any help would be good. Cheers Endre Share this post Link to post Share on other sites