PortPhantom Posted November 14, 2005 Report Share Posted November 14, 2005 Hi zusammen, obwohl ich bei den Bildoptionen die Anzahl zus?tzlicher Bilder auf 7 eingestellt habe (und nat?rlich auch entsprechende Bilder hinterlegt habe... :tongue: ), werden im Shop nur 4 angezeigt. Hat jemand eine Idee, woran das liegen k?nnte? (Das Imageprocessing hatte ich auch schon aktiviert...) Thx, Port Link to comment Share on other sites More sharing options...
nom Posted November 14, 2005 Report Share Posted November 14, 2005 Weil im Template nur f?r 4 Bilder der Code eingef?gt ist. Link to comment Share on other sites More sharing options...
PortPhantom Posted November 16, 2005 Author Report Share Posted November 16, 2005 O.k., wie kann ich das Template erweitern und in wo finde ich die entsprechenden Passagen? Danke vorab, Port Link to comment Share on other sites More sharing options...
polkhigh33 Posted November 16, 2005 Report Share Posted November 16, 2005 deintemplate/module/product_info/product_info_v1.html den code einfach erweitern auf mehr bilder, entsrechend den schon vorhandenen. Link to comment Share on other sites More sharing options...
eviaAdmin Posted November 22, 2005 Report Share Posted November 22, 2005 Hi polk, vielen Dank f?r die Info. Leider habe ich nur einen Teilerfolg erzielen k?nnen. Auf der Produktseite werden immer noch 4 Artikel angezeigt, aber im Popup die kompletten Fotos. Hast Du vielleicht noch eine Idee, wie ich die restlichen Bilder auf der Artikelseite hinbekommen kann? VGr??e, Port Link to comment Share on other sites More sharing options...
Hubi Posted November 22, 2005 Report Share Posted November 22, 2005 {if $PRODUCTS_IMAGE_3 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_3}"><img src="{$PRODUCTS_IMAGE_3}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} ins Template als {if $PRODUCTS_IMAGE_4 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_4}"><img src="{$PRODUCTS_IMAGE_4}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} usw. einf?gen. So wie polk oben schon geschrieben hatte. Link to comment Share on other sites More sharing options...
eviaAdmin Posted November 26, 2005 Report Share Posted November 26, 2005 Hi Hubi, ich will ja nicht nerven, aber ich hatte den code (wie von Dir beschrieben) schon vorher implementiert (siehe nachfolgenden Auszug!) {if $PRODUCTS_IMAGE_1 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_1}"><img src="{$PRODUCTS_IMAGE_1}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_2 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_2}"><img src="{$PRODUCTS_IMAGE_2}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_3 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_3}"><img src="{$PRODUCTS_IMAGE_3}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_4 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_4}"><img src="{$PRODUCTS_IMAGE_4}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_5 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_5}"><img src="{$PRODUCTS_IMAGE_5}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_6 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_6}"><img src="{$PRODUCTS_IMAGE_6}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} {if $PRODUCTS_IMAGE_7 != ''} <tr> <td style="border-top: 1px solid; border-color: #cccccc;"> <a href="{$PRODUCTS_POPUP_LINK_7}"><img src="{$PRODUCTS_IMAGE_7}" alt="{$PRODUCTS_NAME}" /></a> </td> </tr> {/if} Vielleicht f?llt Dir noch etwas anderes ein... Ich bin mit meinem Latein am Ende. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.