Página 1 de 1

Erro

Enviado: 31 Dez 2010, 18:38
por jsg791
Boa tarde,

Instalei o OpenCart hoje e mudei o layout da loja, porém, em Catálogo > Produtos, entre os campos Modelo e Quantidade, está aparecendo a seguinte mensagem
Notice: Undefined variable: column_price in /public_html/admin/view/template/catalog/product_list.tpl on line 35.
Que erro é este e como resolvo?

Obrigado.

José


***UPDATE***

TAMBÉM RECEBI O SEGUINTE CÓDIGO DE ERRO
<b>Notice</b>: Undefined variable: filter_price in <b>/public_html/admin/view/template/catalog/product_list.tpl</b> on line <b>56</b>


FIZ DOWNLOAD DO ARQUIVO COM PROBLEMAS E SEU CÓDIGO ENCONTRA-SE LOGO ABAIXO

Código: Selecionar todos
<?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="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><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><input type="text" name="filter_price" value="<?php echo $filter_price; ?>" /></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="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>

          </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_price = $('input[name=\'filter_price\']').attr('value');



	if (filter_price) {

		url += '&filter_price=' + encodeURIComponent(filter_price);

	}



	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; ?>

ABAIXO AS LINHAS COM PROBLEMA

LINHA 35
Código: Selecionar todos
              <a href="<?php echo $sort_price; ?>"><?php echo $column_price; ?></a>

E A LINHA 56
Código: Selecionar todos
            <td><input type="text" name="filter_price" value="<?php echo $filter_price; ?>" /></td>
Aguardo resposta e desde já agradeço.

Re: Erro

Enviado: 01 Jan 2011, 02:29
por Manoel Vidal
Aparentemente seu layout esta fazendo requisições de código que não existem.
Você mesmo fez esse layout? Ou baixou e instalou? Pois deve ter alguns arquivos que estão faltando ou mesmo modificações em arquivos padrões do OpenCart para que ele funcione corretamente.
Para ajudar melhor poste o link de sua loja, caso não esteja online disponibilize o layout para download.

Re: Erro

Enviado: 01 Jan 2011, 15:58
por jsg791
Boa tarde Manoel,

Eu comprei um template, modifiquei apenas o cabeçalho e o rodapé. O endereço do site é http://mp10tv.com.br, posso lhe enviar os arquivos do template, qual é o seu endereço de email?

Obrigado.

José

Re: Erro

Enviado: 02 Jan 2011, 02:11
por Manoel Vidal
manoel.vidal[arroba]opencartbrasil.com.br

Aguardo retorno.
jsg791 escreveu:Boa tarde Manoel,

Eu comprei um template, modifiquei apenas o cabeçalho e o rodapé. O endereço do site é http://mp10tv.com.br, posso lhe enviar os arquivos do template, qual é o seu endereço de email?

Obrigado.

José