Google Index: Einträge ohne Bild?

Hallo zusammen,

Ich habe bemerkt, dass meine google Listings alle ohne Bild indexiert werden. Dies sowohl bei Produkten wie auch bei Kategorien. Hier mal ein Beispiel:

Kann mir jemand sagen, wo man das konfigurieren kann?

Besten Dank & LG

Hallo Leute

Hat mir den hier niemand eine Idee, woran das liegen könnte?

Wird das ganze möglicherweise durch den Google Export (google.xml) gesteuert? Habe ich dort möglicherweise ein Fehler in der Produktzeile?

<item>
    <g:id>{{ product.productNumber }}</g:id>
    <title>{{ product.translated.name|escape }}</title>
    <description>{{ product.translated.description|escape }}</description>
    <g:google_product_category> {{ product.categories.first.customFields.googleIdCategory|default }}</g:google_product_category>
    {%- if product.categories.count > 0 -%}
        <g:product_type>{{ product.categories.first.getBreadCrumb|slice(1)|join(' > ')|raw|escape }}</g:product_type>
    {%- endif -%}
    <link>{{ seoUrl('frontend.detail.page', {'productId': product.id}) }}</link>
    {% if product.cover.media is defined %}<g:image_link>{{ product.cover.media.url }}</g:image_link>{% endif %}
    <g:condition>new</g:condition>
    <g:availability>in_stock</g:availability>
    {% set price = product.calculatedPrice %}
    {%- if product.calculatedPrices.count > 0 -%}
        {% set price = product.calculatedPrices.last %}
    {%- endif -%}

    <g:price>{{ price.unitPrice|number_format(context.currency.itemRounding.decimals, '.', '') }} {{ context.currency.isoCode }}</g:price>
    {% if product.manufacturer is not null %}
        <g:brand>{{ product.manufacturer.translated.name|escape }}</g:brand>
    {% endif %}
    <g:gtin>{{ product.ean }}</g:gtin>
    <g:mpn>{{ product.manufacturerNumber }}</g:mpn>
    <g:shipping>
        <g:country>CH</g:country>
        <g:service>Standard</g:service>
        {% set weight = product.weight %}
        {% if weight <= 2 %}
            <g:price>7.00 CHF</g:price>
        {% elseif weight <= 10 %}
            <g:price>9.70 CHF</g:price>
        {% elseif weight <= 30 %}
            <g:price>20.50 CHF</g:price>
        {% endif %}
    </g:shipping>
</item>

Wäre Euch um jeden Tipp extrem dankbar, denn ich suche mir aktuell einen Wolf. :face_with_spiral_eyes: