Doc203 Posted January 20, 2005 Posted January 20, 2005 I have been trying to remove the 3 icons on the right side of the header (My Account etc) and I am pulling my hair out. I found the code in includes/header.php <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> I removed it and still no change. Thanks for any help!
studio143 Posted January 20, 2005 Posted January 20, 2005 I have been trying to remove the 3 icons on the right side of the header (My Account etc) and I am pulling my hair out. I found the code in includes/header.php <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> I removed it and still no change. Thanks for any help! <{POST_SNAPBACK}> Try putting // between php & echo. That should simply comment them out. Life should be completed with you skidding in sideways all worn out screaming "Holy Crap..What A Ride" www.studio143vr.com
Doc203 Posted January 20, 2005 Author Posted January 20, 2005 Try putting // between php & echo. That should simply comment them out. <{POST_SNAPBACK}> Still the same... Is the header called up elsewhere also maybe?
Guest Posted January 20, 2005 Posted January 20, 2005 <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> Of course, it works. :thumbsup:
Doc203 Posted January 26, 2005 Author Posted January 26, 2005 ? ?<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> Of course, it works. :thumbsup: <{POST_SNAPBACK}> I even copied your above code and pasted it and have the same thing. The header must be called somewhere else also, maybe from a contribution?
Doc203 Posted January 26, 2005 Author Posted January 26, 2005 I figured it out... I installed STS templates and I had to edit that template.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.