ajsch Posted August 12, 2008 Report Share Posted August 12, 2008 Hallo zusammen, könnte mir jemand sagen, wie ich auf der Startseite bei den Neuen Artikeln zusätzlich zum Button "Details anzeigen" den Button "Jetzt kaufen" anzeigen lassen kann? Hab über die Suche nix gefunden. Vielen Dank schonmal. Link to comment Share on other sites More sharing options...
speiche Posted August 12, 2008 Report Share Posted August 12, 2008 ... auf der bzw. in der new_products_default.html einfach {$module_data.PRODUCTS_BUTTON_BUY_NOW}[/HTML] an entsprechender Stelle ergänzen bzw. wechseln. speiche Link to comment Share on other sites More sharing options...
speiche Posted August 12, 2008 Report Share Posted August 12, 2008 ... wird wahrscheinlich bereits eingtragen sein!? daher bitte noch die products_new.php Datei öffnen und folgenden Eintrag suchen: $module_content[] = array ('PRODUCTS_NAME' => $products_new['products_name'], 'PRODUCTS_SHIPPING_LINK' => $ship_info,'PRODUCTS_TAX_INFO' => $tax_info, 'PRODUCTS_SHORT_DESCRIPTION' => $products_new['products_short_description'], 'PRODUCTS_PRICE' => $products_price['formated'], 'PRODUCTS_VPE' => $vpePrice, 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($products_new['products_id'], $products_new['products_name'])), 'PRODUCTS_IMAGE' => $products_image, 'BUTTON_BUY_NOW' => $buy_now);[/PHP] ... bitte ändern in: [PHP]$module_content[] = array ('PRODUCTS_NAME' => $products_new['products_name'], 'PRODUCTS_SHIPPING_LINK' => $ship_info,'PRODUCTS_TAX_INFO' => $tax_info, 'PRODUCTS_SHORT_DESCRIPTION' => $products_new['products_short_description'], 'PRODUCTS_PRICE' => $products_price['formated'], 'PRODUCTS_VPE' => $vpePrice, 'PRODUCTS_LINK' => xtc_href_link(FILENAME_PRODUCT_INFO, xtc_product_link($products_new['products_id'], $products_new['products_name'])), 'PRODUCTS_IMAGE' => $products_image, 'PRODUCTS_BUTTON_BUY_NOW' => $buy_now);[/PHP] Sollte jetzt funktionieren!? speiche Link to comment Share on other sites More sharing options...
ajsch Posted August 12, 2008 Author Report Share Posted August 12, 2008 Klappt bestens. Vielen Dank! Link to comment Share on other sites More sharing options...
SickofSociety Posted August 15, 2008 Report Share Posted August 15, 2008 Wie kann ich statt Sofort Kaufen {$module_data.PRODUCTS_BUTTON_BUY_NOW} einen Button "Details" verlinken? Also gibt es da etwas wie {$module_data.PRODUCTS_[COLOR="Red"]BUTTON_DETAILS[/COLOR]}[/code] Danke schonmal Edit, habs jetzt so gelöst <a href="{$module_data.PRODUCTS_LINK}"><img src="{$tpl_path}buttons/german/button_buy_now.gif" alt="{$module_data.PRODUCTS_NAME}" /></a> Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.