[color=#282828][font=arial, verdana, tahoma, sans-serif]In /skins/fresh_pick/customer/top.tpl how remove search, sign in or regsiter, cart (button, cart is empty,all)? [/font][/color][color=#000000]CS-CART: version [/color]2.2.5 PROFESSIONAL skin: Fresh Pick
This is top.tpl:
```php
{* $Id$ *}
{hook name="index:user_info"}
{assign var="escaped_current_url" value=$config.current_url|escape:url}
{if !$auth.user_id}
{$lang.sign_in}
{$lang.or}
{$lang.register}
{else}
{if $user_info.firstname && $user_info.lastname}{$user_info.firstname} {$user_info.lastname}{else}{$user_info.email}{/if}
({include file="buttons/button.tpl" but_role="text" but_href="auth.logout?redirect_url=`$escaped_current_url`" but_text=$lang.sign_out})
{/if}
{if $settings.General.secure_auth != "Y"}
{include file="views/auth/login_form.tpl" style="popup" form_name="login_popup_form" id="popup"}
{/if}
{/hook}
{include file="common_templates/search.tpl"}
{include file="views/checkout/components/cart_status.tpl"}
{if $localizations|sizeof > 1}
{/if}
{if $languages|sizeof > 1}
{/if}
{if $currencies|sizeof > 1}
{/if}
[b]When i delete this code. That's what i need but site move left:[/b]
```php
{hook name="index:user_info"}
{assign var="escaped_current_url" value=$config.current_url|escape:url}
{if !$auth.user_id}
{$lang.sign_in}
{$lang.or}
{$lang.register}
{else}
{if $user_info.firstname && $user_info.lastname}{$user_info.firstname} {$user_info.lastname}{else}{$user_info.email}{/if}
({include file="buttons/button.tpl" but_role="text" but_href="auth.logout?redirect_url=`$escaped_current_url`" but_text=$lang.sign_out})
{/if}
{if $settings.General.secure_auth != "Y"}
{include file="views/auth/login_form.tpl" style="popup" form_name="login_popup_form" id="popup"}
{/if}
{/hook}
{include file="common_templates/search.tpl"}
{include file="views/checkout/components/cart_status.tpl"} ```