Guest Reflexio19 Posted October 16, 2006 Report Share Posted October 16, 2006 Hmmm... Also egal, was ich hier ausprobiere... Irgendwie will die SP2.1 nicht. habe die products.php geändert und den Code fürs Template in der product_listing.html eingefügt... Übersehe ich was oder warum funzt das nicht? gibt's da ne schritt für schritt anleitung? Eigentlich ist dieser Thread genau richtig wenn du das genauso machst wie es hier steht. Ab zirka Site 4. Link to comment Share on other sites More sharing options...
kruemel_m73 Posted October 21, 2006 Report Share Posted October 21, 2006 Ich würde gerne wissen, ob das ganze auch ganz einfach über die Lieferzeit und nicht die Menge lösbar ist. Also: sofort Lieferbar - grüne Ampel 1 Woche Lieferzeit - gelbe Ampel 2 Wochen Lieferzeit - rot Ampel Für Tips wäre ich dankbar Gruß Stefan Link to comment Share on other sites More sharing options...
freimachen Posted October 21, 2006 Report Share Posted October 21, 2006 @kruemel_m73 Du kannst im Admin Bereich unter Lieferstatus (ganz unten) Lieferstatus bearbeiten ein Bild einfügen. Jan Link to comment Share on other sites More sharing options...
MAD King Posted October 25, 2006 Report Share Posted October 25, 2006 Also der Code funzt bei mir ganz gut, siehe Bild: Ich hätte jetzt aber ganz gern noch eine kleine Änderung vorgenommen, die ich selber leider nicht hinbekomme. Ich hätte ganz gern noch eine detailierte Anzeige, wenn Artikeloptionen angeboten werden. So soll es mal aussehen: Kann mir da bitte jemand weiterhelfen? Ich komm einfach nicht weiter. Wär mir echt wichtig. Vor dem gleichen Problem stehe ich auch und keine Lösung in Sicht. EDIT: Habe gerade gesehen, dass argy17 es schon in seinem Shop eingebaut hat. Leider scheint es so, dass er diese Info wie er es gemacht hat nicht weitergeben möchte. Link to comment Share on other sites More sharing options...
conny2540 Posted February 12, 2007 Report Share Posted February 12, 2007 Hi, also PRODUCTS_QUANTITY wird bereits in der 3er im Smarty Assigned... d.h. du brauchst nur in deinem Template (products_info_v1.html) die Abfragen f?r die Lagerampel hinzuzuf?gen... hier mal meine Abfragen: {if ($PRODUCTS_QUANTITY>0 and $PRODUCTS_QUANTITY<=3) } [img=http://www.xt-commerce.com/forum/%7B$tpl_path%7Dimages/gelb_gruen.jpg] {/if} {if ($PRODUCTS_QUANTITY==0) } [img=http://www.xt-commerce.com/forum/%7B$tpl_path%7Dimages/gelb.jpg] {/if} {if ($PRODUCTS_QUANTITY>3) } [img=http://www.xt-commerce.com/forum/%7B$tpl_path%7Dimages/gruen.jpg] {/if} das ist alles eigentlich slebsterkl?rend ;-) du kannst die if-Abfragen beliebig erweitern Gru? TechWay Hallo, ich vermute das ganze funktioniert bei mir deshlab nicht, weil ich keine der genannten images im Ordner Template/img habe. Vers. 3.04. 2.1. Wo kann man diese Images herunterladen (grün.jpg, gelb.jpg, usw..) Habe sie leider auch nicht in der Originalversion von xtc finden können ! Viielleicht kann mir jemand diese so zur Verfügung stellen ? Danke im Voraus Conny Link to comment Share on other sites More sharing options...
freimachen Posted February 12, 2007 Report Share Posted February 12, 2007 du kannst dir mit einem x belibigen bildbearbeitungsprogramm selbst welche erstellen, bennest diese nach deinen vorstellungen um und passst den pfad/namen an.zb. img/meine_gelbe_ampel.gif wenn ich micht nicht irre sind im original xtc template sternchen drinn stars_1.gif usw. möchtest du einen text dazu muss das in deiner product_info.html ungefähr so aussehen ($PRODUCTS_QUANTITY==0) }AUSVERKAUFT, nicht mehr lieferbar! <img src="{$tpl_path}img/dein_bild.gif in der new_products.html und in der new_products_default.html muss anstatt der $PRODUCTS_QUANTITY $module_data.PRODUCTS_QUANTITY drinn stehen Link to comment Share on other sites More sharing options...
Scanner Posted February 12, 2007 Report Share Posted February 12, 2007 Hi@all, ja ich habe das Forum schon durchsucht aber nicht das gefunden was ich möchte. Also habe ich selber mal was gemacht, das klappt aber leider noch nicht so wie es soll. Hier der Code der in die Datei /includes/modules/product_info.php eingefügt habe QUELLTEXT //Verfügbarkeitsampel define('TEXT_AMPEL_CASE_01','Keine Artikel auf Lager'); define('TEXT_AMPEL_CASE_02','Es wurde keine Artikel anzahl eingegeben'); define('TEXT_AMPEL_CASE_03','Artikel Anzahl 1-3 noch vorhanden'); define('TEXT_AMPEL_CASE_04','Artikel Anzahl 4-100 noch vorhanden'); define('TEXT_AMPEL_CASE_05','Artikel Anzahl 101-200 noch vorhanden'); define('TEXT_AMPEL_CASE_06','Artikel Anzahl 201-300 noch vorhanden'); define('TEXT_AMPEL_CASE_07','Artikel Anzahl 301-400 noch vorhanden'); define('TEXT_AMPEL_IMG_01','/images/icons/av1.gif'); define('TEXT_AMPEL_IMG_02','/images/icons/av2.gif'); define('TEXT_AMPEL_IMG_03','/images/icons/av3.gif'); define('TEXT_AMPEL_IMG_04','/images/icons/av4.gif'); define('TEXT_AMPEL_IMG_05','/images/icons/av5.gif'); define('TEXT_AMPEL_IMG_06','/images/icons/av6.gif'); define('TEXT_AMPEL_IMG_07','/images/icons/av7.gif'); define('AMPEL_TEXT','Verfügbarkeitsstatus'); $a = $product_info['products_quantity']; $_01 = ($a <= 0 || $a == 0); $_02 = ($a == NULL); $_03 = ($a >= 1 && $a <= 4); $_04 = ($a >= 4 && $a <= 100); $_05 = ($a >= 101 && $a <= 200); $_06 = ($a >= 201 && $a <= 300); $_07 = ($a >= 301 && $a <= 400); switch ($a) { case $_01: $output_string = '<img src="'.TEXT_AMPEL_IMG_01.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_01.'" />'; break; case $_02: $output_string = '<img src="'.TEXT_AMPEL_IMG_02.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_02.'" />'; break; case $_03: $output_string = '<img src="'.TEXT_AMPEL_IMG_03.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_03.'" />'; break; case $_04: $output_string = '<img src="'.TEXT_AMPEL_IMG_04.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_04.'" />'; break; case $_05: $output_string = '<img src="'.TEXT_AMPEL_IMG_05.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_05.'" />'; break; case $_06: $output_string = '<img src="'.TEXT_AMPEL_IMG_06.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_06.'" />'; break; case $_07: $output_string = '<img src="'.TEXT_AMPEL_IMG_07.'" border="0" alt="'.AMPEL_TEXT.' - '.TEXT_AMPEL_CASE_07.'" />'; break; } $info_smarty->assign('AMPELMODUL',$output_string); $info_smarty->assign('PRODUCTS_IMAGE',$image); $info_smarty->assign('PRODUCTS_POPUP_LINK','java script:popupWindow(\'' . xtc_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $product_info['products_id']) . '&imgID=0\')'); So als nächstes habe ich die Variable {$AMPELMODUL} in das Template product_info_v1.html eingebaut. So wenn ich jetzt zb. im Admin den Wert 255 eingebe als Warenbestand müsste das Bild av6.gif kommen. Klingt komisch iss aber so es kommt das Bild av3.gif Kann mir da einer helfen??? der Shop befindet sich auf Manilo.de ® | Der Shop mit dem gewissen Etwas! Beispielartikel: http://www.manilo.de/product_info.php/info...--Class-2-.html Shopversion mit SP2 Vielen Vielen Dank schon vorab für die Hilfe BITTE DRINGEND UM HILFE! Selbstverständlich darf der Code für nicht Kommerzielle Arten verwendet werden, heißt nicht zum Weiterverkauf! Link to comment Share on other sites More sharing options...
Guest Reflexio19 Posted March 5, 2007 Report Share Posted March 5, 2007 Hi, ich versuche die Ampel auch in new_products unterzubringen aber irgendwie gelingt mir das nicht. Hat jemand einen Tipp oder evt. den kompletten code für mich zur Verfügung? Mach ja irgendwie Sinn, dass man die Ampel auch dort sieht, wo die neuen Produkte angezeigt werden oder? Wo ist eigentlich der Unterschied? Ich meine warum funktioniert der code bei der einen PHP Seite und bei der anderen nicht? Danke vorab für eure Hilfe Link to comment Share on other sites More sharing options...
andybfs Posted March 29, 2007 Report Share Posted March 29, 2007 Hallo, ich habe die Ampel jetzt auf Productlisting und Produktinfo eingebunden und es funktionier sehr gut. Nun möchte ich die gleiche Anzeige alledings auch im Warenkorb und auf der Bestellbestätigung haben. Hier habe ich meine Probleme. Was muss ich hierfür wo einfügen? Im Warenkorb habe ich die Ampel zwar drin, aber sie ist immer rot, also muss ja wohl noch was in einer PHP-Datei geändert werden, nur finde ich es nicht. Weiss jemand eine Lösung? Ich verwende 3.04 SP2.1 Gruß, Andy Link to comment Share on other sites More sharing options...
scherzeladen Posted April 6, 2007 Report Share Posted April 6, 2007 Ich bin jetzt ziemlich verwirrt. Shopsystem 3.04 SP1 Ziel: Anzeige der Lagerampel in der new_products.html Dafür wurde in new_products.html folgendes eingefügt: {if $module_data.PRODUCTS_QUANTITY > 0} <a href="shop_content.php?coID=1">Status:<img src="images/ampel_gruen.gif" border="0"></a> {elseif $module_data.PRODUCTS_QUANTITY < 1} <a href="shop_content.php?coID=1">Status:<img src="images/ampel_gelb.gif" border="0"></a> {/if}In der new_products.php sieht das ganze so aus: $module_content[] = array ('PRODUCTS_NAME' => $new_products['products_name'], 'PRODUCTS_QUANTITY'=> $listing['products_quantity'], 'PRODUCTS_DESCRIPTION' => $new_products['products_short_description'], 'PRODUCTS_PRICE' => $xtPrice->xtcGetPrice($new_products['products_id'], $format = true, 1, $new_products['products_tax_class_id'], $new_products['products_price']), 'PRODUCTS_TAX_INFO' => $tax_info, 'PRODUCTS_SHIPPING_LINK' => $ship_info, 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($new_products['products_id'],$new_products['products_name'])), 'PRODUCTS_IMAGE' => $image, 'BUTTON_BUY_NOW' => $buy_now, 'SHIPPING_NAME' => $shipping_status_name, 'SHIPPING_IMAGE' => $shipping_status_image, 'PRODUCTS_ID' => $listing['products_id']); } else { $image = ''; if ($new_products['products_image'] != '') $image = DIR_WS_THUMBNAIL_IMAGES.$new_products['products_image']; $module_content[] = array ('PRODUCTS_NAME' => $new_products['products_name'], 'PRODUCTS_QUANTITY'=> $listing['products_quantity'], 'PRODUCTS_DESCRIPTION' => $new_products['products_short_description'], 'PRODUCTS_PRICE' => $xtPrice->xtcGetPrice($new_products['products_id'], $format = true, 1, $new_products['products_tax_class_id'], $new_products['products_price']), 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($new_products['products_id'],$new_products['products_name'])), 'PRODUCTS_IMAGE' => $image); } [/php]Trotzdem wird die Lagerampel immer "gelb" bzw. "rot" je nach Parameter angezeigt. In der product_info funktioniert das Ganze... Kann mir jemand helfen? Link to comment Share on other sites More sharing options...
conny2540 Posted April 21, 2007 Report Share Posted April 21, 2007 Hallo, habe das eingebaut, aber ohne Ampel. In der Produktinformation steht: aktueller Lagerstand: xxxx Stk. Es funktioniert, NUR bei Lagerstand:0 steht nichts mehr, auch nicht aktueller Lagerstand: In welcher Datei habe ich einen Fehler gemacht ? Wenn Lagerstand -xxx ist dann stimmt es, wenn Lagerstand +1, usw. ist dann stimmt es auch, aber leider nicht bei Null, dann verschwindet Text und auch Stand. Kann mir jemand helfen ? Danke Conny Link to comment Share on other sites More sharing options...
Scanner Posted April 27, 2007 Report Share Posted April 27, 2007 Hallo, habe das eingebaut, aber ohne Ampel. In der Produktinformation steht: aktueller Lagerstand: xxxx Stk. Es funktioniert, NUR bei Lagerstand:0 steht nichts mehr, auch nicht aktueller Lagerstand: In welcher Datei habe ich einen Fehler gemacht ? Wenn Lagerstand -xxx ist dann stimmt es, wenn Lagerstand +1, usw. ist dann stimmt es auch, aber leider nicht bei Null, dann verschwindet Text und auch Stand. Kann mir jemand helfen ? Danke Conny Schreib mal ganz genau welche Scritte Du ausgeführtr hast bzw welche Dateien Du modifiziert hast, sonst können Dir die Progger glaub ich nicht helfen!" Link to comment Share on other sites More sharing options...
Gary Gilmore Posted May 15, 2007 Report Share Posted May 15, 2007 Ich bin jetzt ziemlich verwirrt. Shopsystem 3.04 SP1 Ziel: Anzeige der Lagerampel in der new_products.html Dafür wurde in new_products.html folgendes eingefügt: {if $module_data.PRODUCTS_QUANTITY > 0} <a href="shop_content.php?coID=1">Status:<img src="images/ampel_gruen.gif" border="0"></a> {elseif $module_data.PRODUCTS_QUANTITY < 1} <a href="shop_content.php?coID=1">Status:<img src="images/ampel_gelb.gif" border="0"></a> {/if}In der new_products.php sieht das ganze so aus: $module_content[] = array ('PRODUCTS_NAME' => $new_products['products_name'], 'PRODUCTS_QUANTITY'=> $listing['products_quantity'], 'PRODUCTS_DESCRIPTION' => $new_products['products_short_description'], 'PRODUCTS_PRICE' => $xtPrice->xtcGetPrice($new_products['products_id'], $format = true, 1, $new_products['products_tax_class_id'], $new_products['products_price']), 'PRODUCTS_TAX_INFO' => $tax_info, 'PRODUCTS_SHIPPING_LINK' => $ship_info, 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($new_products['products_id'],$new_products['products_name'])), 'PRODUCTS_IMAGE' => $image, 'BUTTON_BUY_NOW' => $buy_now, 'SHIPPING_NAME' => $shipping_status_name, 'SHIPPING_IMAGE' => $shipping_status_image, 'PRODUCTS_ID' => $listing['products_id']); } else { $image = ''; if ($new_products['products_image'] != '') $image = DIR_WS_THUMBNAIL_IMAGES.$new_products['products_image']; $module_content[] = array ('PRODUCTS_NAME' => $new_products['products_name'], 'PRODUCTS_QUANTITY'=> $listing['products_quantity'], 'PRODUCTS_DESCRIPTION' => $new_products['products_short_description'], 'PRODUCTS_PRICE' => $xtPrice->xtcGetPrice($new_products['products_id'], $format = true, 1, $new_products['products_tax_class_id'], $new_products['products_price']), 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($new_products['products_id'],$new_products['products_name'])), 'PRODUCTS_IMAGE' => $image); } [/php]Trotzdem wird die Lagerampel immer "gelb" bzw. "rot" je nach Parameter angezeigt. In der product_info funktioniert das Ganze... Kann mir jemand helfen? Mich würde das ganze genauso interessieren... Link to comment Share on other sites More sharing options...
conny2540 Posted May 15, 2007 Report Share Posted May 15, 2007 Schreib mal ganz genau welche Scritte Du ausgeführtr hast bzw welche Dateien Du modifiziert hast, sonst können Dir die Progger glaub ich nicht helfen!" Habe das gemacht was ganz am Anfang des Thread steht. Wird ja in der Vers. 2.1 im smarty bereits assigned. Zitat von Techway: schau mal in deiner product_info.php (im ordner includes/modules) nach ob du da sowas ähnliches hast: Code: $info_smarty->assign('PRODUCTS_QUANTITY', $product->data['products_quantity']); bei mir ist es Zeile 99 wenn es drin ist dann m?sste es eigentlich gehen... kannst mal probieren in dem template einfach mal {$PRODUCTS_QUANTITY} auszugeben, ob es geht... Habe einfach {$PRODUCTS_QUANTITY} an der Stelle eingefügt und fertig. Bei mehr als 0 steht auch die entsprechende Zahl, bei weniger als 0 ebenso, aber bei 0 steht leider keine 0. Ampel habe ich keine eingebaut, lediglich nur den Lagerbestand. Link to comment Share on other sites More sharing options...
Guest Reflexio19 Posted May 16, 2007 Report Share Posted May 16, 2007 So. Hab das jetzt soweit eingebunden und funzt auch einwandfrei allerdings habe ich das Problem, dass nicht jeder Artikel eine Ampel zeigt. Bei 95% funktioniert es einwandfrei bei den Rest wird die Ampel einfach weggelassen. Geht es euch auch so und habt ihr evt. eine Lösung für mich? Link to comment Share on other sites More sharing options...
DJ-Team-2002 Posted June 6, 2007 Report Share Posted June 6, 2007 So, nachdem ich nun ab ca. Seite 4 aufmerksam gelesen und probiert habe, habe ich endlich die Ampel in die Produktbeschreibung einbauen können. Nun fehlt mir jedoch noch die Ampel in den Artikelauflistungen der einzelnen Kategorien. Irgendwie bekomme ich das nicht hin.... Vllt. kann mir noch einmal jemand den Vorgang für diese Arbeitschritte "Idiotensicher" erklären? Bitte bitte.... verwende 3.04 SP2.1 Danke schon einmal Und immer daran denken...ich bin Händler kein Programierer *fg* Link to comment Share on other sites More sharing options...
Andreas Kroll Posted August 30, 2007 Report Share Posted August 30, 2007 Das gleiche Problem ergibt sich auch bei mir. Hat den sonst niemand diese Probleme? Link to comment Share on other sites More sharing options...
DJ-Team-2002 Posted August 30, 2007 Report Share Posted August 30, 2007 Also ich habe meinen Tread schon vor ner Ewigkeit hier eingetragen, aber das leist scheinbar keiner mehr Naja fakto das Problem besteht immer noch Vllt. kann ja doch noch jemand helfen? Link to comment Share on other sites More sharing options...
rkonertz Posted June 28, 2008 Report Share Posted June 28, 2008 Hallo zusammen, benutze xt:Commerce v3.0.4 SP2.1 und habe nach Eurer Anleitung die Einbindung der Ampel in die product_listing_v1.html versucht. Bekomme es einfach nicht hin. Es wird nichts angezeigt. products_quantity in der Datei includes/classes/product.php habe ich gemacht. Auch die Codes in der product_listing_v1.html und product_info_v1.html eingebaut Aber wenn ich auf die Startseite gehe, den Artikel aufrufe, sehe ich keine Ampel. Kann mir da bitte einer weiterhelfen ? Danke Reimund Link to comment Share on other sites More sharing options...
conny2540 Posted June 28, 2008 Report Share Posted June 28, 2008 Dazu fällt nur noch eines ein: Hast Du dafür auch Bilder erstellt ? Diese sind nicht Standard. Ohne Bilder keine Anzeige... LG Conny Link to comment Share on other sites More sharing options...
rkonertz Posted June 28, 2008 Report Share Posted June 28, 2008 Ja die Bilder habe ich erstellt und in den entsprechenden Ordner img hineingesetzt. Es müsste ja auch der Text angezeigt werden und das wird er nicht. Das ganze wird ja in den jeweiligen Templaltes Ordner ja geändert.? Link to comment Share on other sites More sharing options...
rkonertz Posted June 28, 2008 Report Share Posted June 28, 2008 Also meine product_listing_v1 sieht so aus {config_load file="$language/lang_$language.conf" section="index"} <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr valign="top"> <td class="contentsTopics">{$CATEGORIES_NAME}</td> <td align="right"> </td> </tr> <tr valign="top"> <td class="contentsTopics">{$CATEGORIES_HEADING_TITLE}</td> <td align="right"> </td> </tr> </table> {if $CATEGORIES_DESCRIPTION}<br /> {$CATEGORIES_DESCRIPTION}{/if}<br />{if $CATEGORIES_IMAGE}<img src="{$CATEGORIES_IMAGE}" alt="{$CATEGORIES_NAME}" /> <br /> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="border-bottom: 1px solid; border-color: #000000;"> </td> </tr> </table> {/if} {if $MANUFACTURER_DROPDOWN}<br /> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" align="right"><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" align="right">{#text_show#} </td> <td class="main" align="right">{$MANUFACTURER_DROPDOWN}</td> </tr> </table> </td> </tr> </table> <br /> {/if} <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center"> <table width="100%" border="0" cellpadding="0" cellspacing="0" style="border-top: 2px solid; border-color: #d4d4d4;"> {foreach name=aussen item=module_data from=$module_content} <tr> <td rowspan="2" style="border-bottom: 1px solid; border-color: #cccccc;"> {if $module_data.PRODUCTS_IMAGE!=''}<a href="{$module_data.PRODUCTS_LINK}"><img src="{$module_data.PRODUCTS_IMAGE}" alt="{$module_data.PRODUCTS_NAME}" /></a>{/if} {if $module_data.PRODUCTS_FSK18=='true'}<br /><img src="{$tpl_path}img/fsk18.gif" alt="" />{/if}</td> <td align="left" class="main"><a href="{$module_data.PRODUCTS_LINK}"><strong>{$module_data.PRODUCTS_NAME}</strong></a></td> </tr> <tr> <!-- Start Ampel //--> {if ($PRODUCTS_QUANTITY<=0)}<img src="{$tpl_path}img/rot.gif" alt="{#alt_red#}" title="{#alt_red#}"/>{/if} {if ($PRODUCTS_QUANTITY>0 & $PRODUCTS_QUANTITY<2)}<img src="{$tpl_path}img/gelb.gif" alt="{#alt_yellow#}" title="{#alt_yellow#}"/>{/if} {if ($PRODUCTS_QUANTITY>=2)}<img src="{$tpl_path}img/gruen.gif" alt="{#alt_green#}" title="{#alt_green#}"/>{/if} <!-- Ende Ampel //--> <td align="left" class="main" style="border-bottom: 1px solid; border-color: #cccccc;">{$module_data.PRODUCTS_SHORT_DESCRIPTION} <br /> <strong>{$module_data.PRODUCTS_PRICE} </strong><br /> {$module_data.PRODUCTS_TAX_INFO}{$module_data.PRODUCTS_SHIPPING_LINK} {if $module_data.PRODUCTS_VPE}<br />{$module_data.PRODUCTS_VPE}{/if} <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td align="right"><table width="200" border="0"> <tr> <td align="right">{if $module_data.PRODUCTS_SHIPPING_NAME} <table width="200" border="0" cellpadding="0" cellspacing="0"> <tr valign="middle"> <td class="main">{#text_shippingtime#}</td> {if $module_data.PRODUCTS_SHIPPING_IMAGE} <td><img src="{$module_data.PRODUCTS_SHIPPING_IMAGE}" alt="{$module_data.PRODUCTS_SHIPPING_NAME}" /></td> {/if} <td class="main">{$module_data.PRODUCTS_SHIPPING_NAME}</td> </tr> </table> {/if} {$module_data.PRODUCTS_BUTTON_BUY_NOW}</td> </tr> </table></td> </tr> </table> </td> </tr> {/foreach} </table> </td> </tr> </table> <br /> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>{$NAVIGATION}</td> </tr> </table>[/PHP] Link to comment Share on other sites More sharing options...
conny2540 Posted June 28, 2008 Report Share Posted June 28, 2008 Ach so, product_listing... da habe ich es auch nicht geschafft. Ich vermute mal, dass da eine Anweisung im Smarty fehlt, weil die Ampel in der product_listing nicht übergeben wird... Habe es gelassen und nun ist es alles zusammengefasst in der product_info. Nach einer Abmahnung, in welcher auch noch Gewichte und Grundpreise abgemahnt wurden, habe ich die product_listing wirklich nur als listing. Kunde kann dort nichts kaufen, der muss sich erst das Produkt ansehen. In der product_info habe ich dann alles reingepackt, was vom Gesetz verlangt wird und dort geht es auch. Das ist abmahnsicherer. Eine Abmahnung hat uns gereicht. Link to comment Share on other sites More sharing options...
rkonertz Posted June 28, 2008 Report Share Posted June 28, 2008 Aha, also das ganze einfach in der Product-info einbauen ? Und wann sieht man das? Wenn man den Artikel aufruft? Danke schon mal im voraus Link to comment Share on other sites More sharing options...
rkonertz Posted June 28, 2008 Report Share Posted June 28, 2008 Pu schwer. da weiss ich nicht wo ich es einbauen kann ? {config_load file="$language/lang_$language.conf" section="product_info"}{$PRODUCT_NAVIGATOR}{$FORM_ACTION}<table width="100%" border="0"> <tr> <td><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td class="main"><table width="100%" border="0"> <tr> <td class="contentsTopics">{$PRODUCTS_NAME}</td> <td align="right"><strong>{$PRODUCTS_PRICE}</strong><br />{$PRODUCTS_TAX_INFO}{if $PRODUCTS_SHIPPING_LINK}{$PRODUCTS_SHIPPING_LINK}{/if}</td> </tr> </table> {if $PRODUCTS_VPE}{$PRODUCTS_VPE}<br />{/if} {if $PRODUCTS_MODEL!=''}{#model#} {$PRODUCTS_MODEL}{/if} {$PRODUCTS_DISCOUNT}<br /> {#print#}{$PRODUCTS_PRINT}<br /> {if $SHIPPING_NAME} <table width="200" border="0" cellpadding="0" cellspacing="0"> <tr valign="middle"> <td class="main">{#text_shippingtime#}</td> {if $SHIPPING_IMAGE}<td><img src="{$SHIPPING_IMAGE}" alt="{$SHIPPING_NAME}" /></td> {/if} <td class="main">{$SHIPPING_NAME}</td> </tr> </table> {/if} </td> </tr> </table> <table width="100%" border="0"> <tr> <td style="border-right: 1px solid; border-color: #cccccc;" valign="top" align="center"> <table width="1" border="0" cellspacing="0" cellpadding="0"> <tr> <td align="center"> <table width="1" border="0" cellpadding="5" cellspacing="0"> <tr> <td>{if $PRODUCTS_IMAGE!=''}<a href="{$PRODUCTS_POPUP_LINK}"><img src="{$PRODUCTS_IMAGE}" alt="{$PRODUCTS_NAME}" /></a>{/if}</td> </tr> <!-- more images --> {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} <!-- more images eof --> </table> <br />{if $PRODUCTS_IMAGE_LINK!=''}<a href="{$PRODUCTS_IMAGE_LINK}" onclick="window.open(this.href); return false;">{$PRODUCTS_TEXT_ZOOM}</a><br />{/if} {if $PRODUCTS_FSK18=='true'} <br /> <img src="{$tpl_path}img/fsk18.gif" alt="" /> {/if} {if $MODULE_graduated_price !=''} {$MODULE_graduated_price}<br /> <br /><br />{/if} </td> </tr> </table></td> <td class="main" valign="top">{if $PRODUCTS_DESCRIPTION !=''}{$PRODUCTS_DESCRIPTION}<br />{/if} <br />{if $MODULE_product_options !=''}{$MODULE_product_options}<br />{/if} <table width="300" border="0"> <tr> <td class="main" valign="middle"><table width="100" border="0"> <tr> <td>{$ADD_QTY}</td> <td>{$ADD_CART_BUTTON}</td> </tr></table></td> </tr> </table> </td> </tr> </table> </td> </tr></table>{if $PRODUCTS_URL != ''} <table width="100%" border="0" class="boxTextBG"> <tr> <td align="center">{$PRODUCTS_URL}<br /></td> </tr></table>{/if}{if $PRODUCTS_DATE_AVIABLE != ''} <table width="100%" border="0" class="boxTextBG"> <tr> <td align="center">{$PRODUCTS_DATE_AVIABLE}<br /></td> </tr></table>{/if} {if $PRODUCTS_ADDED != ''} <table width="100%" border="0" class="boxTextBG"> <tr> <td align="center">{$PRODUCTS_ADDED}<br /></td> </tr></table>{/if}{if $MODULE_products_reviews != ''}<table width="100%" border="0"> <tr> <td>{$MODULE_products_reviews}<br /></td> </tr></table>{/if}{if $MODULE_products_media != ''} <table width="100%" border="0"> <tr> <td align="center">{$MODULE_products_media}<br /></td> </tr> </table>{/if} {if $MODULE_cross_selling != ''} <table width="100%" border="0"> <tr> <td align="center">{$MODULE_cross_selling}<br /></td> </tr></table>{/if} {if $MODULE_reverse_cross_selling != ''} <table width="100%" border="0"> <tr> <td align="center">{$MODULE_reverse_cross_selling}<br /></td> </tr></table>{/if}{if $MODULE_also_purchased != ''} <table width="100%" border="0"> <tr> <td align="center">{$MODULE_also_purchased}<br /></td> </tr> </table>{/if}{$FORM_END} {if ($PRODUCTS_QUANTITY<=0) } <img src="{$tpl_path}img/rot.gif" border="0" alt="Noch {$PRODUCTS_QUANTITY} lieferbar"> noch {$PRODUCTS_QUANTITY} lieferbar. {elseif ($PRODUCTS_QUANTITY<=1) } <img src="{$tpl_path}img/gelb.gif" border="0" alt="Noch {$PRODUCTS_QUANTITY} lieferbar"> {else ($PRODUCTS_QUANTITY>=3) } <img src="{$tpl_path}img/grün.gif" border="0" alt="Noch {$PRODUCTS_QUANTITY} lieferbar"> {/if}[/PHP] Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.