Hide Subcategories On Products List

On the products lists appear on top the subcategories list.

How can we hide this ?

example.jpg

Just forgot to tell I am using CS-Cart 4.10.3

design/themes/THEME/templates/views/categories/view.tpl

remove the code between

{if $subcategories}
and
{/if}

or add the following code to the CSS section of the theme editor

.subcategories {
    display: none !important;
}

Second solution is perfect and work in second.

Thank so much !

You are welcome! :)