Thumpmonkey Posted August 1, 2010 Posted August 1, 2010 (edited) Hi all!! Total Newbie to osCommerce software here... I'm having an issue with a template... The Header graphic was in 4 graphic parts with 3 navigation links incorporated in it. I deleted 3 of the header graphics in image file, and re-named the graphic I wanted to the same name as the remaining header graphic, uploaded it and has changed as planned. The only problem, is there are 3 graphic boxes, and the 3 navigational links on the side of the header graphic on the page... I've searched the header.php, and a few other php files, but can't find where those little suckers are hiding... (I have not went into the osCommerce admin folder of my ftp manager) I've also tried going into my admin area of my store. Does anyone have any idea how I go about getting rid of these little pains in my buttocks? It's template #2619 and you can check out the page in question at glassillusions.net/store I'm not all that familiar with php code so be gentle. Edited August 1, 2010 by Thumpmonkey Quote
Guest Posted August 1, 2010 Posted August 1, 2010 Shawn, Those graphics are called to the header.php file in this code: <td align="right" valign="bottom"><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td> If you don't want them in there, then change the code to this: <!-- <td align="right" valign="bottom"><?php echo '<a href="' . tep_href_link(FILENAME_ACCOUNT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_account.gif', HEADER_TITLE_MY_ACCOUNT) . '</a> <a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">' . tep_image(DIR_WS_IMAGES . 'header_cart.gif', HEADER_TITLE_CART_CONTENTS) . '</a> <a href="' . tep_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'header_checkout.gif', HEADER_TITLE_CHECKOUT) . '</a>'; ?> </td> --> Chris Quote
furan Posted August 10, 2010 Posted August 10, 2010 Hello, I'm changing the product_info and not as it is called the variable for the price. Anybody knows? Thanks Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.