Remove H Tag In Mainbox

Hello,

I would like to remove the H1 tag that I have in my mainbox general in my product page.

Please check here http://www.shankara.it/meditazione-della-luna-piena-mp3.html

How can i do it?

skins\YOUR_THEME\customer\blocks\product_templates\default_template.tpl

{if !$hide_title}

{$product.product|unescape}

{/if}

I can just change it

{if !$hide_title}

{$product.product|unescape}

{/if}

in

{if !$hide_title}

{$product.product|unescape}

{/if}

?????

This mainbox-title is the H1 of the product page and i dont want to change.
But my block with products inside with a scoller for cross-selling is H1.

How can i change only it?

Please check here http://www.shankara....-piena-mp3.html

This mainbox-title is the H1 of the product page and i dont want to change.
But my block with products inside with a scoller for cross-selling is H1.

How can i change only it?

Please check here http://www.shankara....-piena-mp3.html

In this case please check the wrapper of this block in the admin panel and change the corresponding file. All block wrappers are located in the following directory:

design/themes/YOUR_THEME/templates/blocks/wrappers

I had the same problem and I changed the H1 tags in the following code to H5

{if $content|trim}
    {if $anchor}
    
    {/if}
    
{if $title || $smarty.capture.title|trim} {hook name="wrapper:mainbox_general_title_wrapper"}
{hook name="wrapper:mainbox_general_title"} {if $smarty.capture.title|trim} {$smarty.capture.title nofilter} {else} {$title nofilter} {/if} {/hook}
{/hook} {/if}
{$content nofilter}
{/if}