Hide / Remove The Short Description Title

I'm looking to remove the title of "Short Description" from the product page, any ideas how I can do this?

Thanks, Dan

Is anyone ever going to answer this question?

Assuming you are referring to the admin side, the easiest way to do so is to simply set the language variable 'short_description' to nothing. However, that could impact other areas that might use that lang var.

Alternatively you could use some jQuery similar to (not tested)

$('label[for=elm_product_short_descr]").hide();

Or you can use the hook named 'products:update_product_short_description' and rewrite the whole block leaving out the 'label'.

There are probably 10 ways to do it depending on your needs, skill and risk of side effects.

As alternative, open the design/backend/templates/views/products/update.tpl file and remove the following part of code

{__("short_description")}:

Then clear cache and check

I'm looking to remove the title of "Short Description" from the product page, any ideas how I can do this?

Thanks, Dan

It might depend on how you have your products laid out, but for me I can change:

skins/your-skin/products_pages/products_avdvanced.tpl

Basically change:

{if $product.short_description || $product.full_description}
<div class="box" style="margin-top: 5px;">
{if $product.short_description}
{$product.short_description}
{else}
{$product.full_description|strip_tags|truncate:280:"..."}{if $product.full_description|strlen > 280}<a href="{$index_script}?{$target_name}=products&product_id={$product.product_id}" class="underlined">{$lang.more_link}</a>{/if}
{/if}
div>
{/if}
To:

{*{if $product.short_description || $product.full_description}
<div class="box" style="margin-top: 5px;">
{if $product.short_description}
{$product.short_description}
{else}
{$product.full_description|strip_tags|truncate:280:"..."}{if $product.full_description|strlen > 280}<a href="{$index_script}?{$target_name}=products&product_id={$product.product_id}" class="underlined">{$lang.more_link}</a>{/if}
{/if}
div>
{/if}*}
All you are doing is commenting out this code. I usually just comment stuff out, but I guess you could also just delete this section of code.