RussianDozhdevik
Писатель
- Регистрация
- 16 Июл 2015
- Сообщения
- 6
- Реакции
- 0
Вот то, что выводится: NULLОткуда вообще $this-product ? когда либо $this-products , либо $product
Открываем файл components/com_virtuemart/views/cart/tmpl/padded.php
Смотрим кусок кода
Добавим перед echo '<h4>'... новую строку var_dump($product); и возрадуемся, увидев какие данные вернутся от товара!PHP:if($this->products){ foreach($this->products as $product){ echo '<h4>'.JText::sprintf('COM_VIRTUEMART_CART_PRODUCT_ADDED',$product->product_name,$product->quantity).'</h4>'; } }
А дальше выводим все что угодно!
но если прописать не var_dump($product); а var_dump($this->product);
то выводит много всякой информации:
Код:
["virtuemart_manufacturer_id"]=> array(0) { } ["mf_name"]=> string(0) "" ["mf_desc"]=> string(0) "" ["mf_url"]=> string(0) "" ["categories"]=> array(1) { [0]=> string(2) "16" } ["virtuemart_category_id"]=> string(2) "16" ["ordering"]=> string(1) "0" ["id"]=> string(3) "439" ["category_name"]=> string(29) "Плащи-дождевики" ["packaging"]=> int(0) ["box"]=> int(0) ["customfields"]=> array(0) { } ["customfieldsRelatedCategories"]=> array(0) { } ["customfieldsRelatedProducts"]=> array(0) { } ["customfieldsCart"]=> array(1) { [0]=> object(stdClass)#247 (11) { ["virtuemart_custom_id"]=> string(2) "75" ["custom_title"]=> string(13) "Размер:" ["show_title"]=> string(1) "1" ["custom_value"]=> string(0) "" ["custom_field_desc"]=> string(0) "" ["custom_tip"]=> string(0) "" ["field_type"]=> string(1) "V" ["virtuemart_customfield_id"]=> string(4) "1149" ["is_hidden"]=> string(1) "0" ["options"]=> array(2) { [1149]=> object(stdClass)#243 (9) { ["virtuemart_product_id"]=> string(3) "194" ["custom_params"]=> string(1) "0" ["custom_element"]=> string(1) "0" ["virtuemart_custom_id"]=> string(2) "75" ["virtuemart_customfield_id"]=> string(4) "1149" ["custom_value"]=> string(5) "48-50" ["custom_price"]=> NULL ["custom_param"]=> string(0) "" ["text"]=> string(6) "48-50 " } [1150]=> object(stdClass)#242 (9) { ["virtuemart_product_id"]=> string(3) "194" ["custom_params"]=> string(1) "0" ["custom_element"]=> string(1) "0" ["virtuemart_custom_id"]=> string(2) "75" ["virtuemart_customfield_id"]=> string(4) "1150" ["custom_value"]=> string(5) "50-52" ["custom_price"]=> NULL ["custom_param"]=> string(0) "" ["text"]=> string(6) "50-52 " } } ["display"]=> string(141) " " } } ["customsChilds"]=> array(0) { } ["orderable"]=> bool(true) ["product_template"]=> string(0) "" ["canonical"]=> string(103) "index.php?
Последнее редактирование модератором: