I need to show full description on blocks/list_templates/product_list.tpl instead of short description
As I undertsand this part it is controlled by product _data.tpl
{capture name="prod_descr_`$obj_id`"}
{if $show_descr}
{if $product.short_description}
{$product.short_description nofilter}
{else}
{$product.full_description|strip_tags|truncate:160 nofilter}
{/if}
{/if}
{/capture}
{if $no_capture}
{assign var="capture_name" value="prod_descr_`$obj_id`"}
{$smarty.capture.$capture_name nofilter}
{/if}
So if I change it for example as follows I do not see any description shown:
{capture name="prod_descr_`$obj_id`"}
{if $show_descr}
{$product.full_description|strip_tags|truncate:160 nofilter}
{/if}
{/capture}
{if $no_capture}
{assign var="capture_name" value="prod_descr_`$obj_id`"}
{$smarty.capture.$capture_name nofilter}
{/if}
If I just add {$product.full_description nofilter}
in the product_list.tpl
I see repeated short description instead of full one.
Any hint please?