Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Log your self in and Create an Account Problem


Guest

Recommended Posts

Posted

:'( How do I move the Log your self in and Create an Account links to the blue bar right above it?

And How do I delelet the links and text of it out of the body right below the blue bar?

 

Go to http://sunnydaystc.com/catalog/ and see what I mean.

 

I really need help in this area. Any help would be greatly appreciated. :)

Posted

You can first open your /includes/header.php and look for

<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>

change that to

	<td align="right" class="headerNavigation"><a href="<?php echo tep_href_link(FILENAME_LOGIN); ?>" class="headerNavigation"><?php echo HEADER_TITLE_LOGIN; ?></a>  |  <a href="<?php echo tep_href_link(FILENAME_CREATE_ACCOUNT); ?>" class="headerNavigation"><?php echo HEADER_TITLE_CREATE_ACCOUNT; ?></a>  |  <?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>

then open index.php and look for

<?php echo tep_customer_greeting(); ?>

and remove it or change it to

<?php // echo tep_customer_greeting(); ?>

Or you could remove

<tr>

<td class="main"><?php echo tep_customer_greeting(); ?></td>

</tr>

<tr>

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

which would remove the line and the space between that line and the main text

Wendy James

 

Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.

Archived

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

×
×
  • Create New...