Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Need some help with infobox's


kruiser69

Recommended Posts

what i would like to do is to put what is in the info box on my page in the main menu box with same format as wot is in the main menu now and also add some more sub_menus to them with links. ???? www.durasales.com.au/shop

Link to comment
Share on other sites

Install the infopages mod, that should take care of it,

 

you can allways goto the catalog/includes/boxes/catagories.php

and insert/replace the bottom of catagories.php

 

Look for $info_box_contents = array();

and replace it and everything below it with this

 

 

$info_box_contents = array();

 $info_box_contents[] = array('align' => 'left',

                              'text'  => $categories_string .

                                        '<a href="http://www.yournewlink.net" target="blank">yournewlink</a><br>' .

                                        '<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>') ;

 

                             

 new infoBox($info_box_contents);

?>

           </td>

         </tr>

<!-- categories_eof //-->

 

I have not tested this so do a backup

 

Sean

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...