You can edit the transformation for the news listing web part (ex: a repeater) and remove the code for teaser image.
Something like this
  <div class="teaser">
<a href="{% url %}" title="{% title %} ">
  {% if (String.IsNullOrEmpty(NewsTeaser)) 
    { 
      "<img src=\"~/App_Themes/CorporateSite/Images/no_image_news.png\" width=\"60\" alt=\"Default news teaser image\" />"  
    } 
    else 
    { 
      GetImage(NewsTeaser, title, 90, 0, 0) } 
  |(identity)GlobalAdministrator%}
</a>