mehrere Bilder für google shopping bei Subshop (Produktexport)

Hallo zusammen, 

ich versuche gerade mehrere Bilder meiner Artikel an google zu senden. Dies funktioniert wie in der Shopware doku beschrieben, aber die image links, die er auswirft sind vom Hauptshop. ich möchte die URL des Subshop auswerfen.   zur Info: bei den Standardeexporten mit 1 Bild funktioniert das. 

 

Hat jemand einen Tipp für mich ?

 

{assign var="string" value=$sArticle.articleID|articleImages:$sArticle.ordernumber:2:"##"|escape}
{assign var="productVariantImage" value="##"|explode:$string}

 
    {$sArticle.ordernumber|escape}
    {$sArticle.name|strip_tags|strip|truncate:80:"...":true|escape} {$sArticle.additionaltext|escape}
	{$sArticle.description_long|strip_tags|strip|truncate:5000:"..."|escape}
	{$sArticle.attr6|escape:"xml"}
    {$sArticle.articleID|category:" > "|escape}
	{$sArticle.articleID|link:$sArticle.name|escape}
	
	{$productVariantImage[0]|escape}
	
	{$productVariantImage[1]|escape}
	{$productVariantImage[2]|escape}
    {$productVariantImage[3]|escape}
    {$productVariantImage[4]|escape}
    {$productVariantImage[5]|escape}
    {$productVariantImage[6]|escape}
    {$productVariantImage[7]|escape}
    {$productVariantImage[8]|escape}
    {$productVariantImage[9]|escape}
	
	neu

 

 

 

es gibt ein Ticket hierzu. bitte dranhängen, damit es bevorzugt gelöst wird.

 

Shopware Issuetracker 

Falls es nochmal einer braucht, ich hab mir wie folgt beholfen: 

{$productVariantImage[0]|replace:"HauptShopDomain.tld":{$sConfig.sBASEPATH}}
{$productVariantImage[1]|replace:"HauptShopDomain.tld":{$sConfig.sBASEPATH}}
{$productVariantImage[2]|replace:"HauptShopDomain.tld":{$sConfig.sBASEPATH}}
etc...

Ist vielleicht nicht die eleganteste Lösung, aber ging dafür schnell.

“HauptShopDomain.tld” sollte natürlich dem entsprechen, was man in den Shopeinstellungen hinterlegt hat, beispielsweise “www.HauptShopDomain.tld”

Statt {$sConfig.sBASEPATH} könnte man natürlich auch “MeineSubShopDomain.tld” einsetzen