# Google Shopping Produktfeed Codierungsproblem

**URL:** https://forum.shopware.com/t/google-shopping-produktfeed-codierungsproblem/96766
**Category:** Shopware 6 (German)
**Created:** [20. Oktober 2022 um 08:27 UTC](https://forum.shopware.com/t/google-shopping-produktfeed-codierungsproblem/96766 "2022-10-20T08:27:34Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Patti](https://avatars.discourse-cdn.com/v4/letter/p/e495f1/32.png) [@Patti](https://forum.shopware.com/u/Patti)
#### Post date: [20. Oktober 2022 um 08:27 UTC](https://forum.shopware.com/t/google-shopping-produktfeed-codierungsproblem/96766/1 "2022-10-20T08:27:34Z")

</div>

Guten Tag,

ich habe das Problem, dass Google in meinem Feed folgende Fehlermeldungen gibt:

Codierungsproblem (doppelte UTF8-Codierung) in Attribut: title  
Codierungsproblem in Attribut: description  
Codierungsproblem (doppelte UTF8-Codierung) in Attribut: product type  
Codierungsproblem (doppelte UTF8-Codierung) in Attribut: title  
Codierungsproblem (doppelte UTF8-Codierung) in Attribut: mpn

Es schein so, als würden die Umlaute die Probleme bereiten. Leider haben ich keine Idee, woran das liegen mag. Hat wer vielleicht eine Idee für mich?

Mein Feed:

\<?xml version="1.0" encoding="UTF-8" ?\> {{ context.salesChannel.name }} {{ productExport.salesChannelDomain.url }} {{ productExport.salesChannelDomain.language.locale.code }} Logo URL {{ context.salesChannel.name }} {{ productExport.salesChannelDomain.url }} {{ product.productNumber }} {{ product.translated.name|escape }} {{ product.translated.description|escape }} 4643 {%- if product.categories.count \> 0 -%} {{ product.categories.first.getBreadCrumb|slice(1)|join(' \> ')|raw|escape }} {%- endif -%} {{ seoUrl('frontend.detail.page', {'productId': product.id}) }} {% if product.cover.media is defined %}{{ product.cover.media.url }}{% endif %} new {%- if product.availableStock \>= product.minPurchase and product.deliveryTime -%} in\_stock {%- elseif product.availableStock \< product.minPurchase and product.deliveryTime and product.restockTime -%} preorder {%- else -%} out\_of\_stock {%- endif -%} {% 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>
<g:brand>{{ product.manufacturer.translated.name|escape }}</g:brand>
<g:gtin>{{ product.ean }}</g:gtin>
<g:mpn>{{ product.manufacturerNumber }}</g:mpn>
<g:shipping>
    <g:country>DE</g:country>
    <g:service>DHL</g:service>
    <g:price>4.50 {{ context.currency.isoCode }}{# change your default delivery costs #}</g:price>
</g:shipping>

```

Vielen Dank vorab!
