Jump to content
xt:Commerce Community Forum

Zeites Artikelbild im Listing ?


Recommended Posts

hallo,

so einfach gehts auch nicht, weil im Listing die Produkte mit "default" ausgegeben werden und nicht mit "full"

in irgendeinem Plugin einen neuen Hookpoint anlegen

CODE

class.product.php:BuildData_bottom

INHALT ( wird dann nur auf Kategorie-Seiten ausgegeben )

if ($_GET['page'] == 'categorie') {
    global $mediaImages;
    $media_images = $mediaImages->get_media_images($this->data['products_id'], 'product');
    $this->data['more_images'] = $media_images['images'];

}

Status angehakt, Reihenfolge 1

im Template dann abfragen ( z.B. nur das 2te Bild )

{if $module_data.more_images.1}

{assign var=bild2 value=$module_data.more_images.1}

{img img=$bild2 type=m_thumb class=productImageBorder alt=$module_data.products_name|escape:"html"}

{/if}

 

Grüße

 

Link to comment
Share on other sites

ok habs mit

{if $module_data.more_images && $module_data.more_images|@count != 0}
                            
  {foreach name=aussen item=img_data from=$module_data.more_images.0}
    {img img=$img_data.file type=thumb class="image center product-image productImageBorder img-responsive" alt=$module_data.products_name|escape:"html"}
  {/foreach}
                           

{/if}

 

gelöst. Vielen Dank für die Hilfe!

 

Gibt es eigentlich auch eine Möglichkeit direkt mit PHP ein hovereffekt zu erstellen?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...