How can I place product images in the basket ??? I have the variable $aBasket[iProduct] the product id number right ? in file orders_basket.tpl What is the varible name I can use as filename of product image (small) QC 0.3
juhasz.jozsef - this will be big modification. You need to open core/products.php and check throwProductsData() function. Check for part where is $aProducts['fotoSmall'] etc. and where is $aFoto = throwFirstPhoto( 1 ); You need to include files.php and files-ff.php in actions_client/orders.php and add part of code from throwProductsData() to listBasket().
jozsi
2006-09-20 20:46
Ok found the parts you've mentioned... but i've found the listBasket() function in /core/orders.php trying to get $aBasket[fotoSmall]...$aBasket[fotoSmall] am I going the right way ? THX for you help.
added: --at the top : require_once DIR_CORE.'files.php'; require_once DIR_CORE.'files-ff.php';