M!m Posted July 30, 2008 Report Share Posted July 30, 2008 hallo, ich möchte gerne bei meinem shop das datum für das ende eines angebots anzeigen lassen. ich habe mir auch schon in der specials.php die DB-abfrage angeguckt und feststellen müssen das die expires_date spalte mit abgerufen wird, nur weiß ich jetzt nicht wie ich diese angezeigt bekomme. ich meine alle anderen kann man mit {$box_content.XYZ} abrufen und ausgeben, aber expires_date nicht. gruß M!m Link to comment Share on other sites More sharing options...
M!m Posted August 1, 2008 Author Report Share Posted August 1, 2008 keiner eine idee? {push} Link to comment Share on other sites More sharing options...
Hetfield Posted August 1, 2008 Report Share Posted August 1, 2008 Ist doch per Variable ansprechbar in der Box. Die Ausgabe erfolgt unformatiert mit folgender Variable: {$box_content.PRODUCTS_EXPIRES}[/HTML] Um dies aber in ein normales Datumsformat zu bringen, kann man dies auch innerhalb des Templates per Smarty formatieren lassen. Sieht dann ungefähr so aus: [HTML]{$box_content.PRODUCTS_EXPIRES|date_format:"%x"}[/HTML] MfG Hetfield Link to comment Share on other sites More sharing options...
Karl43 Posted July 27, 2009 Report Share Posted July 27, 2009 Hallo Hetfield, du bist doch ein spezi! Ich wollte den expires_date auch in der specials.html und in der product_info.html anzeigen lassen. Irgendwie haut das nicht hin. Man braucht doch nur einen zweiZeiler in die jeweilige php schreiben, um die Variable in der html aufrufen zu können. Haste ne Idee? Ich probier schon seit Tagen und drehe mich in Kreis. Link to comment Share on other sites More sharing options...
Karl43 Posted July 27, 2009 Report Share Posted July 27, 2009 Ja da hatte ich zu schnell die Flinte ins Korn geworfen. Ablaufdatum für Angebote in der specials.html anzeigen: In der specials.php einfügen: (wurde als normaler Text eingefügt wegen der fetten Markierung) $specials_query_raw = "select p.products_id, pd.products_name, pd.products_short_description, p.products_price, p.products_tax_class_id,p.products_shippingtime, p.products_image,p.products_vpe_status,p.products_vpe_value,p.products_vpe,p.products_fsk18, s.expires_date, s.specials_quantity, s.specials_new_products_price from ".TABLE_PRODUCTS." p, ".TABLE_PRODUCTS_DESCRIPTION." pd, ".TABLE_SPECIALS." s where p.products_status = '1' and s.products_id = p.products_id and p.products_id = pd.products_id ".$group_check." ".$fsk_lock." and pd.language_id = '".(int) $_SESSION['languages_id']."' and s.status = '1' order by s.specials_date_added DESC"; $specials_split = new splitPageResults($specials_query_raw, $_GET['page'], MAX_DISPLAY_SPECIAL_PRODUCTS); in der specials.html Abfrage einfügen: <small>Angebot gültig bis: {$module_data.PRODUCTS_EXPIRES|date_format:"%x"}</small> mit der berühmten smarty variante wegen der Formatierung. Link to comment Share on other sites More sharing options...
Hetfield Posted July 27, 2009 Report Share Posted July 27, 2009 Geht doch! MfG Hetfield Link to comment Share on other sites More sharing options...
Karl43 Posted July 27, 2009 Report Share Posted July 27, 2009 Jo, aber jetze fehlt noch die product_info.html - dat sieht kompliziert aus. Obwohl das schon folgendes steht: {$PRODUCTS_DATE_AVIABLE} sollte es doch sein oder wie? Link to comment Share on other sites More sharing options...
Hetfield Posted July 27, 2009 Report Share Posted July 27, 2009 Hatte ich schon mal hier irgendwo gepostet. Dachte, das hättest Du gefunden gehabt. Hier wirst Du fündig: http://www.xt-commerce.com/forum/s-shopbereich/37505-product_info-sonderangebot-ablaufdatum-prozent.html#post294370 MfG Hetfield Link to comment Share on other sites More sharing options...
Karl43 Posted July 27, 2009 Report Share Posted July 27, 2009 Kerl, Kerl, Kerl, war das eine Geburt.... hatte zwar hier danach gesucht, aber wohl mit den falschen Suchbegriffen. Ja dann mal ein herzliches Merci - und der Copyright ist natürlich mit drin!;-) Und funktioniert natürlich auf Anhieb... Link to comment Share on other sites More sharing options...
Hetfield Posted July 27, 2009 Report Share Posted July 27, 2009 Kein Problem! Freue mich immer, wenn ich helfen konnte. MfG Hetfield Link to comment Share on other sites More sharing options...
hahlrichs Posted July 30, 2009 Report Share Posted July 30, 2009 Hallo zusammen, die selbe Anforderung hab ich im Veyton. Kann mir einer Infos geben, wie ich das ganze im Veyton einbinden kann? Danke und Gruß Holger Link to comment Share on other sites More sharing options...
Karl43 Posted July 30, 2009 Report Share Posted July 30, 2009 Es ist ja erstaunlich das es im Veyton nicht standartmäßig drinne ist. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.