screege Posted March 19, 2004 Share Posted March 19, 2004 I uploaded a file using oswrapper and I have the link to the page the only thing is I cannot add it to the information.php box. How cab this be done? Here is the link I need to be added: http://relojeria.com.mx/php/catalog/wrappe...e=nosotros.html Can anyone help me??? Thank you Link to comment Share on other sites More sharing options...
Marg Posted March 19, 2004 Share Posted March 19, 2004 Can you post your information.php (box) here? Marg Link to comment Share on other sites More sharing options...
screege Posted March 19, 2004 Author Share Posted March 19, 2004 Here it is but it is not showing anything: <?php /* $Id: information.php,v 1.1.2.1 2003/04/18 17:42:37 wilt Exp $ orig : information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ ?> <!-- information //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '">' . BOX_INFORMATION_GV . '</a>');//ICW ORDER TOTAL CREDIT CLASS/GV '<a href="http://relojeria.com.mx/php/catalog/wrapper.php?file=nosotros.html">'.Nosotros.'</a><br>' . new infoBox($info_box_contents); ?> </td> </tr> <!-- information_eof //--> Thanks Link to comment Share on other sites More sharing options...
Marg Posted March 19, 2004 Share Posted March 19, 2004 <?php /* $Id: information.php,v 1.1.2.1 2003/04/18 17:42:37 wilt Exp $ orig : information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright ? 2003 osCommerce Released under the GNU General Public License */ ?> <!-- information //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '">' . BOX_INFORMATION_GV . '</a>')' .//ICW ORDER TOTAL CREDIT CLASS/GV '<a href="http://relojeria.com.mx/php/catalog/wrapper.php?file=nosotros.html">'.Nosotros.'</a><br>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- information_eof //--> Copy and paste the above... Should work, Marg Link to comment Share on other sites More sharing options...
screege Posted March 19, 2004 Author Share Posted March 19, 2004 Nope it gives me an error and doesn?t shows the information box Thanks Link to comment Share on other sites More sharing options...
Marg Posted March 19, 2004 Share Posted March 19, 2004 <?php /* $Id: information.php,v 1.1.2.1 2003/04/18 17:42:37 wilt Exp $ orig : information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright ? 2003 osCommerce Released under the GNU General Public License */ ?> <!-- information //--> <tr> <td> <?php $info_box_contents = array(); $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION); new infoBoxHeading($info_box_contents, false, false); $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' . '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . '<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '">' . BOX_INFORMATION_GV . '</a><br>' .//ICW ORDER TOTAL CREDIT CLASS/GV '<a href="http://relojeria.com.mx/php/catalog/wrapper.php?file=nosotros.html">'.Nosotros.'</a><br>'); new infoBox($info_box_contents); ?> </td> </tr> <!-- information_eof //--> DOH! Sorry! Try the above... Marg Link to comment Share on other sites More sharing options...
screege Posted March 19, 2004 Author Share Posted March 19, 2004 Thanks a lot it works really fine Link to comment Share on other sites More sharing options...
Marg Posted March 19, 2004 Share Posted March 19, 2004 Sure... When and if you add more link to your info box, notice that all of the ends of the lines end with: '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' . '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a><br>' . And the last line of the links ends with: '<a href="http://relojeria.com.mx/php/catalog/wrapper.php?file=nosotros.html">' .Nosotros. '</a><br>'); That'll end future troubles. Marg Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.