Block Multi Column Category List

Is there a way besides picture + title also show description ?

Use the get_categories hooks (app/functions/fn.cart.php) to add ?:category_descriptions.description field to the list of fields which are retrieved from the database.

Then override the following file

design/themes/THEME/templates/views/categories/components/categories_multicolumns.tpl

and add the following code there:

{if $category_data.description}
    {$category_data.description nofilter}
{/if}

Oh, this sounds complicated and not really want modifying original files. Thanks

Use the get_categories hooks (app/functions/fn.cart.php) to add ?:category_descriptions.description field to the list of fields which are retrieved from the database.

Then override the following file

design/themes/THEME/templates/views/categories/components/categories_multicolumns.tpl

and add the following code there:

{if $category_data.description}
    {$category_data.description nofilter}
{/if}

Oh, this sounds complicated and not really want modifying original files. Thanks

You can override the file without modifying. And unfortunately the list of categories is got without descriptions from the database.