View Single Post
  #2  
Old 04-16-2009, 02:05 AM
  Victor D's Avatar 
Victor D Victor D is offline
 

X-Adept
  
Join Date: Aug 2008
Posts: 643
 

Default Re: Move some text links from cart box to authentication box

if you have anonymous checkout disabled try cut from skin1/customer/menu_cart.tpl
Code:
{if $anonymous_login eq "" && $login ne ""} <li><a href="register.php?mode=update">{$lng.lbl_modify_profile}</a></li> <li><a href="register.php?mode=delete">{$lng.lbl_delete_profile}</a></li> {/if} <li><a href="orders.php">{$lng.lbl_orders_history}</a></li>

and insert into skin1/customer/authbox.tpl before {/capture}

Code:
<ul> <li><a href="register.php?mode=update">{$lng.lbl_modify_profile}</a></li> <li><a href="register.php?mode=delete">{$lng.lbl_delete_profile}</a></li> <li><a href="orders.php">{$lng.lbl_orders_history}</a></li> </ul>

backup the files before you change them to be able revert changements easily
__________________
Regards,
Victor Dubiniuk

X-Cart Skins Store
- twenty two different skins for 4.1.x and 4.2.x;
- 4.3.x compatible versions are available;
- refresh you store now!

Smart menu X-Cart add-on for 4.1.8 - 4.3.x
Featured Products Slide Show X-Cart add-on for 4.1.8 - 4.3.x
Reply With Quote