This can be achieved by editing the theme.liquid file. I recommend creating a backup first.
If your code looks different you’ll need to adapt the code accordingly. You may need to change the template name as well if your theme is using something else. Leave off the .liquid part.
Change this:
{% if page_description %}
{% endif %}
To this:
{% if page_description %}
{% if template == ‘collection-list’ %}
{% else %}
{% endif %}
{% endif %}
Allen