Stop the article image from appearing in blog posts DAWN

Hi,

We need to stop the article image from appearing in blog posts, any help is welcome.
Dawn Theme

Μια ενημέρωση για τον COVID-19 – JACQUES HERMES

article-card.liquid liquid right now

{% comment %}
    Renders an article card for a given blog with settings to either show the image or not.

    Accepts:
    - blog: {Object} Blog object
    - article: {Object} Article object
    - media_aspect_ratio: {String} The setting changes the aspect ratio of the article image, if shown
    - media_height: {String} The setting changes the height of the article image. Overrides media_aspect_ratio.
    - show_image: {String} The setting either show the article image or not. If it's not included it will show the image by default
    - show_date: {String} The setting either show the article date or not. If it's not included it will not show the image by default
    - show_author: {String} The setting either show the article author or not. If it's not included it will not show the author by default
    - show_badge: {String} The setting either show the blog badge or not.
    - lazy_load: {Boolean} Image should be lazy loaded. Default: true (optional)

    Usage:
    {% render 'article-card' blog: blog, article: article, show_image: section.settings.show_image %}
{% endcomment %}

{%- if article and article != empty -%}
  {%- liquid
    assign ratio = 1
    if media_aspect_ratio != nil
      assign ratio = media_aspect_ratio
    endif
  -%}
  
    {% comment %} 

{%- endif -%}

For anyone being interested in solving a similar problem watching this;

we found a way to make the featured image disappear from the blog post page in the dawn theme. All you have to do is go to online store>edit code>Templates>article.json and find the block order.

It should be something like this;

“block_order”: [

“featured_image”,
“title”,
“share”,
“content”
]

you have to delete the “featured_image” from there and it will disappear from the blog post page. We hope this helped.

Thank you for your time,

Jacques Hermes team