Hello everyone.
Im having a problem in my admin in Catalog- Products page. Next to Model I get this error message :
_________________________________________________________
Notice: Undefined variable: column_price in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 35
________________________________________________________
Then on the product its self in the price colume I get this:
________________________________________________________
Notice: Undefined index: special in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 85 Notice: Undefined index: price in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 88
________________________________________________________
I get this mesage all the way down to the lat product on that page. Does anyone know a solutions please.
Thank YOu
Im having a problem in my admin in Catalog- Products page. Next to Model I get this error message :
_________________________________________________________
Notice: Undefined variable: column_price in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 35
________________________________________________________
Then on the product its self in the price colume I get this:
________________________________________________________
Notice: Undefined index: special in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 85 Notice: Undefined index: price in /home/mysite/public_html/admin/view/template/catalog/product_list.tpl on line 88
________________________________________________________
I get this mesage all the way down to the lat product on that page. Does anyone know a solutions please.
Thank YOu
First:
Is it a new install or has it been working normally before?
Did you change anything to the Admin theme?Always mention version of your OpenCart!
Is it a new install or has it been working normally before?
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I also get the error on opencart 1.4.9.3, got this error since downloading Music Player v2.1:
My product.php looks like:
Cannot see what is going wrong
help is mhuch appreciated
My product_list.tpl looks like this:Notice: Undefined index: special in /home/user/domains/domain.tld/public_html/webshop/admin/view/template/catalog/product_list.tpl on line 85
Code: Select all
<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>
Code: Select all
if (isset($this->request->post['product_special'])) {
$this->data['product_specials'] = $this->request->post['product_special'];
} elseif (isset($product_info)) {
$this->data['product_specials'] = $this->model_catalog_product->getProductSpecials($this->request->get['product_id']);
} else {
$this->data['product_specials'] = array();
}

help is mhuch appreciated
Vandaag is mijn Lievelingsdag!
==
Today is my most favorite day!
replace your product.tpl with this codeStije wrote:if somebody needs more info please ask
Code: Select all
<?php echo $header; ?>
<?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="left"></div>
<div class="right"></div>
<div class="heading">
<h1 style="background-image: url('view/image/product.png');"><?php echo $heading_title; ?></h1>
<div class="buttons"><a onclick="location = '<?php echo $insert; ?>'" class="button"><span><?php echo $button_insert; ?></span></a><a onclick="$('#form').attr('action', '<?php echo $copy; ?>'); $('#form').submit();" class="button"><span><?php echo $button_copy; ?></span></a><a onclick="$('form').submit();" class="button"><span><?php echo $button_delete; ?></span></a></div>
</div>
<div class="content">
<form action="<?php echo $delete; ?>" method="post" enctype="multipart/form-data" id="form">
<table class="list">
<thead>
<tr>
<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 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="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><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="right"><input type="text" name="filter_quantity" value="<?php echo $filter_quantity; ?>" 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="filter();" class="button"><span><?php echo $button_filter; ?></span></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 echo $product['name']; ?></td>
<td class="left"><?php echo $product['model']; ?></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>
</tr>
<?php } ?>
<?php } else { ?>
<tr>
<td class="center" colspan="7"><?php echo $text_no_results; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</form>
<div class="pagination"><?php echo $pagination; ?></div>
</div>
</div>
<script type="text/javascript"><!--
function filter() {
url = 'index.php?route=catalog/product&token=<?php echo $token; ?>';
var filter_name = $('input[name=\'filter_name\']').attr('value');
if (filter_name) {
url += '&filter_name=' + encodeURIComponent(filter_name);
}
var filter_model = $('input[name=\'filter_model\']').attr('value');
if (filter_model) {
url += '&filter_model=' + encodeURIComponent(filter_model);
}
var filter_quantity = $('input[name=\'filter_quantity\']').attr('value');
if (filter_quantity) {
url += '&filter_quantity=' + encodeURIComponent(filter_quantity);
}
var filter_status = $('select[name=\'filter_status\']').attr('value');
if (filter_status != '*') {
url += '&filter_status=' + encodeURIComponent(filter_status);
}
location = url;
}
//--></script>
<script type="text/javascript"><!--
$('#form input').keydown(function(e) {
if (e.keyCode == 13) {
filter();
}
});
//--></script>
<?php echo $footer; ?>
Who is online
Users browsing this forum: No registered users and 6 guests