Well, what do you want to do? I'd recommend only displaying the location.tpl on pages other than the home page. To do this, open up customer/home.tpl and replace this:
Code:
{include file="location.tpl"}
with this:
Code:
{if $main eq "catalog" and $current_category.category eq ""}
{else}
{include file="location.tpl"}
{/if}