Show full product description on product list page V4.02

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?

change the
{$product.full_description|strip_tags|truncate:160 nofilter}


to
{$product.full_description nofilter}

If you add fn_print_r($products); in app\controllers\frontend\categories.php somewhere near assignment Registry::get('view')->assign('products', $products);

you will see all the data of $products array. I find that this array have empty [full_description] only short. Probably that is why you can't have it in your templates until you assign it via php.