Bekommt man den Streichpreis irgendwie in den XML Feed für Google Shopping?
Und wenn ja, wie?
Falls es noch jemanden interessieren sollte:
{% if product.calculatedPrice.listPrice.price is defined and product.calculatedPrice.listPrice.price > product.calculatedPrice.unitPrice %}
<g:price>{{product.calculatedPrice.listPrice.price|number_format(context.currency.itemRounding.decimals, '.', '')}} {{ context.currency.isoCode }}</g:price>
<g:sale_price> {{ product.calculatedPrice.unitPrice|number_format(context.currency.decimalPrecision, '.', '') }} } {{ context.currency.isoCode }}</g:sale_price>
{%- else -%}
<g:price>{{ product.calculatedPrice.unitPrice|number_format(context.currency.decimalPrecision, '.', '') }} {{ context.currency.isoCode }}</g:price>
{%- endif -%}
1 „Gefällt mir“