View Single Post
  #2  
Old 03-18-2012, 01:45 PM
  vasilis's Avatar 
vasilis vasilis is offline
 

X-Adept
  
Join Date: Feb 2009
Posts: 758
 

Default Re: removing item from breadcrumbs and changing buttons value

Regarding your first question, you need to modify a template file:

Before doing any modifications, backup your initial file.
In skin/Island_Bangles/customer/content.tpl template file you add an additional condition clause in the line referring to the 'customer/bread_crumbs.tpl' file, ie:

Look for the code similar to:
Code:
{if $main neq "catalog" or $current_category.category neq ""} {include file="customer/bread_crumbs.tpl"} {/if}

and change it to :

Code:
{if $main neq "catalog" or $current_category.category neq "" or $main neq "help"} {include file="customer/bread_crumbs.tpl"} {/if}
Reply With Quote