creatonio Posted May 5, 2010 Report Share Posted May 5, 2010 Добрый день, подскажите пожалуйста, как реализовать, что бы в корзине было не только название товара, но и его изображение? Quote Link to post Share on other sites
Guest Posted May 5, 2010 Report Share Posted May 5, 2010 В классе Cart.class.php нужно выбрать из базы для товаров поле small_image, и в шаблоне вывести его аналогично списку товаров Quote Link to post Share on other sites
nigga Posted May 31, 2010 Report Share Posted May 31, 2010 а можно подетальнееничего не понял куда и что вводитьспасибо! Quote Link to post Share on other sites
nigga Posted June 2, 2010 Report Share Posted June 2, 2010 алё корифеивы где?чиркните пару строк кода, вам же это просто Quote Link to post Share on other sites
nigga Posted June 7, 2010 Report Share Posted June 7, 2010 люди дооообрыыыыееееебудьтеее так любезны снизойти до обьяснения элементарных вещейчто конкретно и куда надо написать, чтобы маленькие картинки отображались в корзине Quote Link to post Share on other sites
Guest Posted June 7, 2010 Report Share Posted June 7, 2010 1) Добавить products.small_image as small_image:Cart.class.tpl:...// Сформируем массив товаров в корзине...$query = sql_placeholder("SELECT ..., products.small_image as small_image, ... ", $variants_ids);...2) Вывести:{if $variant->small_image}<img height=70 align=absmiddle src='files/products/{$variant->small_image}'>{/if} Quote Link to post Share on other sites
nigga Posted June 9, 2010 Report Share Posted June 9, 2010 данкешон мастер Quote Link to post Share on other sites
nigga Posted July 2, 2010 Report Share Posted July 2, 2010 кто смог прикрутить себе в магаз это?у меня не получилосьесли у вас получилось, поясните в каком месте cart.tpl эти строки вставлятьи что вместо троеточия пишется? Quote Link to post Share on other sites
nigga Posted July 4, 2010 Report Share Posted July 4, 2010 admin подскажи пожалуйста Quote Link to post Share on other sites
creatonio Posted July 4, 2010 Author Report Share Posted July 4, 2010 Делал все по выше написанной инструкции, все получилось. Quote Link to post Share on other sites
nigga Posted July 5, 2010 Report Share Posted July 5, 2010 напиши пожалуйста после каких строк вставлял эти? и что за троеточия в коде? туда надо что-то вставлять? Quote Link to post Share on other sites
creatonio Posted July 5, 2010 Author Report Share Posted July 5, 2010 1. Открываем Cart.class.php2. Ищем в шаблоне строки // Сформируем массив товаров в корзине 3. Ниже будет $query = sql_placeholder (--СОДЕРЖИМОЕ--,)4. В это содержимое вставляем products.small_image as small_image (содержимое не удаляем и незабываем отделять вставленный код запятыми )5. Открываем файл Cart.tpl 6. В таблице заказа товара создаем еще одну ячейку и вставляем в нее код {if $variant->small_image}<img height=70 align=absmiddle src='files/products/{$variant->small_image}'>{/if}По идее должно работать, у меня все получилось. ЗЫ. если ничего не забыл. Quote Link to post Share on other sites
nigga Posted July 6, 2010 Report Share Posted July 6, 2010 сработало!!!спасибо о creatonio, что не поленился и написал малявучесть тебе и хвала! Quote Link to post Share on other sites
TitaNker Posted December 26, 2010 Report Share Posted December 26, 2010 супер Quote Link to post Share on other sites
Danya Posted October 5, 2011 Report Share Posted October 5, 2011 у меня нет такой строки: ____________________________________________________ // Сформируем массив товаров в корзине if(is_array($_SESSION['shopping_cart'])) { $products = Storefront::get_products(array_keys($_SESSION['shopping_cart'])); if(!empty($products)) { foreach($products as $k=>$product) { // А количество товара - не должно превысить количество на складе // (мало ли, может пока юзер играется с корзиной, кто-то купил уже эти товары) $products[$k]->amount = $_SESSION['shopping_cart'][$product->product_id] = min($_SESSION['shopping_cart'][$product->product_id], $product->quantity); // Добавим стоимость к общей сумме $total_price += $product->discount_price*$products[$k]->amount; } } }____________________________________________________на версии 1.1 как можно сделать? Quote Link to post Share on other sites
Kosjak76 Posted October 5, 2011 Report Share Posted October 5, 2011 В этой допотопной это будет {if $product->small_image}files/products/{$product->small_image}{/if}, больше ничего никуда добавлять не надо, это в карт.тпл Quote Link to post Share on other sites
Danya Posted October 5, 2011 Report Share Posted October 5, 2011 Kosjak76спасибо огромное. Quote Link to post Share on other sites
Kosjak76 Posted October 5, 2011 Report Share Posted October 5, 2011 Переходить надо на 1,4, а лучше сразу на 2ю))) Quote Link to post Share on other sites
nigga Posted October 10, 2011 Report Share Posted October 10, 2011 так 2 глючнаяж Quote Link to post Share on other sites
Guest Posted October 10, 2011 Report Share Posted October 10, 2011 nigga, не могли бы вы озвучить найденные глюки? Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.