Jump to content

Pricewars i zdjęcia


Recommended Posts

Witam, mam zainstalowany w sklepie moduł pricewars, przesłałem plik xml do analizy i stwierdzono że podaje złą ścieżkę do obrazków :

 

podaje: .../79-medium/-lososiowa-bransoletka.jpg

powinno być: .../79-large_default/-lososiowa-bransoletka.jpg

 

Zapewne zmiany należy dokonać w pliku ceneo.php. Poniżej linjki z kodem odnośnie obrazków.

$image = Image::getCover($Product['id_product']);					
				if ($image['id_image'])
					//$img_url = $this->getShopHost().'img/p/'.$image['id_product'].'-'.$image['id_image'].'-large.jpg';
					$img_url = $this->getImageLink($Product['link_rewrite'], $image['id_product'].'-'.$image['id_image'],$this->getXmlImageType());
				else
					$img_url = "";
					
				$image = $xml->createElement('image',$img_url);
				$offer->appendChild($image);
				
				$attributes = $xml->createElement('attributes');
				$offer->appendChild($attributes);

				$attribute = $xml->createElement('attribute');
				$attributes->appendChild($attribute);

				$name = $xml->createElement('name','Producent');
				$attribute->appendChild($name);

				$value = $xml->createElement('value',$Product['manufacturer_name']);
				$attribute->appendChild($value);
				
Edited by seboxp (see edit history)
Link to comment
Share on other sites

  • 1 month later...

@vekia, a może mi to bardziej łopatologicznie wytłumaczyć?

Mam takie coś w procewars:

 
$img_url = $this->getImageLink($Product['link_rewrite'], $image['id_product'].'-'.$image['id_image'],$this->getXmlImageType());
 
i niestety generuje mi miniaturki, a ja potrzebuję dużą fotkę. 
jak powyższą linijkę zmienić żeby było ok?
 
OK. Nie było pytania. Jakieś zaćmienie. KONFIGURACJA.

 

no i właśnie ta zmienna trzymała typ obrazka :)

Edited by props (see edit history)
Link to comment
Share on other sites

×
×
  • Create New...