I assume you are talking about product.tpl (the detailed products template). You will need to remove the if statement. Try replacing this:
Code:
{if $product.fulldescr ne ""}{$product.fulldescr}{else}{$product.descr}{/if}
with this
Code:
{$product.descr}
{$product.fulldescr}