I modified my store to move the login and cart to the top by editing skin1/customer/home.tpl as shown below. This worked great to move the Login and Shopping cart to the top but when i logged in i could not see Categories, Manufactures or the Cart. Is there another file i'm supposed to edit so that logged in customers can view the changes or is the code messed up somehow?
Code:
<td class="VertMenuLeftColumn">
{ include file="customer/search.tpl" }
<br />
{if $login eq "" }
{ include file="auth.tpl" }
<br />
{ include file="customer/menu_cart.tpl" }
<br />
{if $active_modules.SnS_connector && $config.SnS_connector.sns_display_button eq 'Y'}
{include file="modules/SnS_connector/button.tpl"}<br />
<br />
{/if}
{*{ include file="customer/categories.tpl" }*}
{include file="treemenu/treemenu.tpl"}
<br />
{if $active_modules.Manufacturers ne "" and $config.Manufacturers.manufacturers_menu eq "Y"}
{ include file="modules/Manufacturers/menu_manufacturers.tpl" }
{/if}
{ include file="customer/special.tpl" }
{if $active_modules.Survey && $menu_surveys}
{foreach from=$menu_surveys item=menu_survey}
{include file="modules/Survey/menu_survey.tpl"}
<br />
{/foreach}
{/if}
<br />
{/if}
{if $login eq "" }
{ include file="news.tpl" }
{else}
{ include file="authbox.tpl" }
{/if}
<br />
{include file="customer/main/recently_viewed.tpl"}
<br />
{if $active_modules.Bestsellers ne "" and $config.Bestsellers.bestsellers_menu eq "Y"}
{ include file="modules/Bestsellers/menu_bestsellers.tpl" }
{/if}
<br />
{if $active_modules.Interneka ne ""}
{ include file="modules/Interneka/menu_interneka.tpl" }
<br />
{/if}
{ include file="help.tpl" }
<br />
{ include file="livehelp.tpl" }
<br />
{ include file="poweredby.tpl" }
<br />