Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

EgorK

Newbie
  
  • Posts

    1
  • Joined

  • Last visited

Everything posted by EgorK

  1. Вот такие ошибки я вижу в товарах (в админке): 1.Notice: Undefined index: category in/public_html/admin/view/template/catalog/product_list.tplon line 113Warning: Invalid argument supplied for foreach() in/public_html/admin/view/template/catalog/product_list.tplon line 113 2.Notice: Undefined index: manufacturer in/public_html/admin/view/template/catalog/product_list.tplon line 114 3.Notice: Undefined index: button_clear in/public_html/admin/view/template/catalog/product_list.tplon line 114 Что на что заменить, что дописать? Помогите пожалуйста разобраться. Вот кусок кода: <?php echo $header; ?> <div id="content"> <div class="breadcrumb"> <?php foreach ($breadcrumbs as $breadcrumb) { ?> <?php echo $breadcrumb['separator']; ?><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a> <?php } ?> </div> <?php if ($error_warning) { ?> <div class="warning"><?php echo $error_warning; ?></div> <?php } ?> <?php if ($success) { ?> <div class="success"><?php echo $success; ?></div> <?php } ?> <div class="box"> <div class="heading"> <h1><img src="view/image/product.png" alt="" /> <?php echo $heading_title; ?></h1> <div class="buttons"><a onclick="location = '<?php echo $insert; ?>'" class="button"><?php echo $button_insert; ?></a><a onclick="$('#form').attr('action', '<?php echo $copy; ?>'); $('#form').submit();" class="button"><?php echo $button_copy; ?></a><a onclick="$('form').submit();" class="button"><?php echo $button_delete; ?></a></div> </div> <div class="content"> <form action="<?php echo $delete; ?>" method="post" enctype="multipart/form-data" id="form"> <input hidden id="page" value="<?php echo $page ?>"> <input hidden id="sort" value="<?php echo $sort ?>"> <input hidden id="order" value="<?php echo $order ?>"> <table class="list"> <thead> <tr id="head"> <td width="1" style="text-align: center;"><input type="checkbox" onclick="$('input[name*=\'selected\']').attr('checked', this.checked);" /></td> <td class="center"><?php echo $column_image; ?></td> <td class="left"> <?php echo $column_category; ?> </td> <td class="left"> <?php echo $column_manufacturer; ?> </td> <td class="left"><?php if ($sort == 'pd.name') { ?> <a href="<?php echo $sort_name; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_name; ?></a> <?php } else { ?> <a href="<?php echo $sort_name; ?>"><?php echo $column_name; ?></a> <?php } ?></td> <td class="left"><?php if ($sort == 'p.model') { ?> <a href="<?php echo $sort_model; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_model; ?></a> <?php } else { ?> <a href="<?php echo $sort_model; ?>"><?php echo $column_model; ?></a> <?php } ?></td> <td class="left"><?php if ($sort == 'p.price') { ?> <a href="<?php echo $sort_price; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_price; ?></a> <?php } else { ?> <a href="<?php echo $sort_price; ?>"><?php echo $column_price; ?></a> <?php } ?></td> <td class="right"><?php if ($sort == 'p.quantity') { ?> <a href="<?php echo $sort_quantity; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_quantity; ?></a> <?php } else { ?> <a href="<?php echo $sort_quantity; ?>"><?php echo $column_quantity; ?></a> <?php } ?></td> <td class="left"><?php if ($sort == 'p.status') { ?> <a href="<?php echo $sort_status; ?>" class="<?php echo strtolower($order); ?>"><?php echo $column_status; ?></a> <?php } else { ?> <a href="<?php echo $sort_status; ?>"><?php echo $column_status; ?></a> <?php } ?></td> <td class="right"><?php echo $column_action; ?></td> </tr> </thead> <tbody> <tr class="filter"> <td></td> <td></td> <td><select name="filter_category_id" style="width: 100px;"> <option value="*"></option> <option value="null">-</option> <?php foreach($categories as $category) { ?> <option value="<?php echo $category['category_id'] ?>" <?php if($filter_category_id == $category['category_id']) echo 'selected="selected"'; ?>><?php echo $category['name'] ?></option> <?php }?> </select></td> <td><select name="filter_manufacturer_id" style="width: 100px;"> <option value="*"></option> <option value="null">-</option> <?php foreach($manufacturers as $manufacturer) { ?> <option value="<?php echo $manufacturer['manufacturer_id'] ?>"<?php if($filter_manufacturer_id == $manufacturer['manufacturer_id']) echo 'selected="selected"'; ?>><?php echo $manufacturer['name'] ?></option> <?php }?> </select></td> <td><input type="text" name="filter_name" value="<?php echo $filter_name; ?>" /></td> <td><input type="text" name="filter_model" value="<?php echo $filter_model; ?>" /></td> <td align="left"><input type="text" name="filter_price" value="<?php echo $filter_price; ?>" size="8"/></td> <td align="right"><input type="text" name="filter_quantity" value="<?php echo $filter_quantity; ?>" size="8" style="text-align: right;" /></td> <td><select name="filter_status"> <option value="*"></option> <?php if ($filter_status) { ?> <option value="1" selected="selected"><?php echo $text_enabled; ?></option> <?php } else { ?> <option value="1"><?php echo $text_enabled; ?></option> <?php } ?> <?php if (!is_null($filter_status) && !$filter_status) { ?> <option value="0" selected="selected"><?php echo $text_disabled; ?></option> <?php } else { ?> <option value="0"><?php echo $text_disabled; ?></option> <?php } ?> </select></td> <td align="right"><a onclick="clear_filter();" class="button"><?php echo $button_clear; ?></a></td> </tr> <?php if ($products) { ?> <?php foreach ($products as $product) { ?> <tr> <td style="text-align: center;"><?php if ($product['selected']) { ?> <input type="checkbox" name="selected[]" value="<?php echo $product['product_id']; ?>" checked="checked" /> <?php } else { ?> <input type="checkbox" name="selected[]" value="<?php echo $product['product_id']; ?>" /> <?php } ?></td> <td class="center"><img src="<?php echo $product['image']; ?>" alt="<?php echo $product['name']; ?>" style="padding: 1px; border: 1px solid #DDDDDD;" /></td> <td class="left"><?php foreach ($product['category'] as $cat) echo $cat['name'] . '<br />'; ?></td> <td class="left"><?php echo $product['manufacturer']; ?></td> <td class="left"><?php echo $product['name']; ?></td> <td class="left"><?php echo $product['model']; ?></td> <td class="left"><?php if ($product['special']) { ?> <span style="text-decoration: line-through;"><?php echo $product['price']; ?></span><br/> <span style="color: #b00;"><?php echo $product['special']; ?></span> <?php } else { ?> <?php echo $product['price']; ?> <?php } ?></td> <td class="right"><?php if ($product['quantity'] <= 0) { ?> <span style="color: #FF0000;"><?php echo $product['quantity']; ?></span> <?php } elseif ($product['quantity'] <= 5) { ?> <span style="color: #FFA500;"><?php echo $product['quantity']; ?></span> <?php } else { ?> <span style="color: #008000;"><?php echo $product['quantity']; ?></span> <?php } ?></td> <td class="left"><?php echo $product['status']; ?></td> <td class="right"><?php foreach ($product['action'] as $action) { ?> [ <a href="<?php echo $action['href']; ?>"><?php echo $action['text']; ?></a> ] <?php } ?></td>
×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.