eustet Posted February 23, 2004 Posted February 23, 2004 :o Hi .. I'm really new at this online store business. I am trying to help my sister out with her online catalog business setup and there are some things I cannot figure out how to do. One is create a blank order form that would allow a customer to enter the item number and the rest of the blanks would fill in. Does someone already have this or would you be willing to work with me on a pay basis to get this done? Also, How do I add more items to the menu bar on the catalog page?
Guest Posted March 5, 2004 Posted March 5, 2004 :o Hi .. I'm really new at this online store business. I am trying to help my sister out with her online catalog business setup and there are some things I cannot figure out how to do. One is create a blank order form that would allow a customer to enter the item number and the rest of the blanks would fill in. Does someone already have this or would you be willing to work with me on a pay basis to get this done? Also, How do I add more items to the menu bar on the catalog page? I am currently working on what I think you are referring to. I am using the PayPal basic template for now until I figure out how to code directly into osCommerce. The sample is below and be careful about checking out because there is real data in the form. http://www.kyrkelands.com/quickcart.php As far as the menu bar at the top, open your includes/header.php look for the area similar to this: <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="headerNavigation"> <td class="headerNavigation"> <?php echo $breadcrumb->trail(' » '); ?></td> <td align="right" class="headerNavigation"><?php if (tep_session_is_registered('customer_id')) { ?><a href="<?php echo tep_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGOFF; ?></a> | <?php } ?><a href="<?php echo tep_href_link(FILENAME_ACCOUNT, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_MY_ACCOUNT; ?></a> | <a href="<?php echo tep_href_link(FILENAME_SHOPPING_CART); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a> | <a href="<?php echo tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CHECKOUT; ?></a> </td> </tr> </table> Edit the area between <td align="right" class="headerNavigation"> and </td> You can see an example where I have done this extensively at: http://www.corporateheaven.com/
Recommended Posts
Archived
This topic is now archived and is closed to further replies.