I JUST updated it, it available at the normal download page.
Please note the Language is dutch only, I added instructions for english *I don't have the english files here so I can't update them for you*
Please note the Language is dutch only, I added instructions for english *I don't have the english files here so I can't update them for you*
Opencart specialist | Our website | Our modules
With Qtip's files I re-uploaded with both dutch and english versions.
Thanks Qtip for updating! (your upload has the english language files in the wrong folder, which is why I uploaded again)
Thanks Qtip for updating! (your upload has the english language files in the wrong folder, which is why I uploaded again)
Opencart specialist | Our website | Our modules
I haven't tested in 1.4.4 myself, I'll be installing 1.4.4 sometime this week or next week, and test is then, I don't see why it wouldn't work, the update from 1.3.2 to 1.4.0 was very simple, I think there are no changes from 1.4.0 to 1.4.4 in these files.
You could backup the files and try it yourself?
You could backup the files and try it yourself?
Opencart specialist | Our website | Our modules
Hi, we have installed this on 1.4.4 on our dev. server, it works fine but i cant remember whether we installed this fix or not (most modules require it anyway):
http://forum.opencart.com/viewtopic.php?f=24&t=11906
http://forum.opencart.com/viewtopic.php?f=24&t=11906
Best Regards,
David Catherall,
AireTech IT.
I installed this on 1.4.4, seems to half work, after adding url class back in.
But i get an error on the admin customer list page, saying undefined approved button. I turned on the option to approve new customers manually.
Is it possible for the creator of this mod to grab fresh copies of the 1.4.4 files and implement the code additions in there please (eng version)? I tried, but now im creating even more errors!
But i get an error on the admin customer list page, saying undefined approved button. I turned on the option to approve new customers manually.
Is it possible for the creator of this mod to grab fresh copies of the 1.4.4 files and implement the code additions in there please (eng version)? I tried, but now im creating even more errors!
I am sure the problem for that lies in the approving of customers, this is something I don't use.
I'm pretty busy at the moment (starting a new company) but I'll do my best to have a look at this for you.
I'm pretty busy at the moment (starting a new company) but I'll do my best to have a look at this for you.
Opencart specialist | Our website | Our modules
In 1.4.7 version will work?
توسعه اپن کارت
طراحی نرم افزارهای مبتنی بر اپن کارت - امنیت/توسعه اختصاصی/خدمات سئو/ سیستم تیکت و فروش بلیط/مدیر سمینار و همایش
اتصال اپن کارت به نرم افزارهای انبار داری و انواع CRM و ERP و دستگاه پوز و پرینتر
https://www.imahmoudi.ir
https://www.opencart.com/index.php?rout ... @gmail.com
Ive been meaning to take care of this issue for awhile.
I get this bug with this mod
Notice: Undefined variable: orders in /home/content/a/x/i/axidworks/html/admin/view/template/sale/customer_form.tpl on line 183
Now this only happens to new customers, who place new orders. Nothing to do with past customers who have already placed orders. before I switched to 1.4.0
Form is listed above. Any help on this would be great. Ive been super busy and havent been able to attend to the bugs on my site.
I get this bug with this mod
Notice: Undefined variable: orders in /home/content/a/x/i/axidworks/html/admin/view/template/sale/customer_form.tpl on line 183
Now this only happens to new customers, who place new orders. Nothing to do with past customers who have already placed orders. before I switched to 1.4.0
Code: Select all
<?php echo $header; ?>
<?php if ($error_warning) { ?>
<div class="warning"><?php echo $error_warning; ?></div>
<?php } ?>
<div class="box">
<div class="left"></div>
<div class="right"></div>
<div class="heading">
<h1 style="background-image: url('view/image/customer.png');"><?php echo $heading_title; ?></h1>
<div class="buttons"><a onclick="$('#form').submit();" class="button"><span><?php echo $button_save; ?></span></a><a onclick="location='<?php echo $cancel; ?>';" class="button"><span><?php echo $button_cancel; ?></span></a></div>
</div>
<div class="content">
<!-- start of tabs -->
<div class="tabs"><a tab="#tab_general"><?php echo $tab_general; ?></a><?php foreach ($addresses as $result) { ?><a tab="#tab_address<?php echo $result['address_id']; ?>"><?php if ($result['address_id'] == $customer_address_id) { ?><?php echo $tab_default_address; ?><?php } else { ?><?php echo $tab_address; ?><?php } ?></a><?php } ?><a tab="#tab_orders"><?php echo $tab_order; ?></a></div>
<!-- end of tabs -->
<form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form">
<div id="tab_general" class="page">
<table class="form">
<tr>
<td><span class="required">*</span> <span class="entry"><?php echo $entry_firstname; ?></span></td>
<td><input type="text" name="firstname" value="<?php echo $firstname; ?>" />
<?php if ($error_firstname) { ?>
<span class="error"><?php echo $error_firstname; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><span class="required">*</span> <span class="entry"><?php echo $entry_lastname; ?></span></td>
<td><input type="text" name="lastname" value="<?php echo $lastname; ?>" />
<?php if ($error_lastname) { ?>
<span class="error"><?php echo $error_lastname; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_email; ?></td>
<td><input type="text" name="email" value="<?php echo $email; ?>" />
<?php if ($error_email) { ?>
<span class="error"><?php echo $error_email; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_telephone; ?></td>
<td><input type="text" name="telephone" value="<?php echo $telephone; ?>" />
<?php if ($error_telephone) { ?>
<span class="error"><?php echo $error_telephone; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_fax; ?></td>
<td><input type="text" name="fax" value="<?php echo $fax; ?>" /></td>
</tr>
<tr>
<td><?php echo $entry_password; ?></td>
<td><input type="password" name="password" value="<?php echo $password; ?>" />
<br />
<?php if ($error_password) { ?>
<span class="error"><?php echo $error_password; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_confirm; ?></td>
<td><input type="password" name="confirm" value="<?php echo $confirm; ?>" />
<?php if ($error_confirm) { ?>
<span class="error"><?php echo $error_confirm; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_newsletter; ?></td>
<td><select name="newsletter">
<?php if ($newsletter) { ?>
<option value="1" selected="selected"><?php echo $text_enabled; ?></option>
<option value="0"><?php echo $text_disabled; ?></option>
<?php } else { ?>
<option value="1"><?php echo $text_enabled; ?></option>
<option value="0" selected="selected"><?php echo $text_disabled; ?></option>
<?php } ?>
</select></td>
</tr>
<tr>
<td><?php echo $entry_customer_group; ?></td>
<td><select name="customer_group_id">
<?php foreach ($customer_groups as $customer_group) { ?>
<?php if ($customer_group['customer_group_id'] == $customer_group_id) { ?>
<option value="<?php echo $customer_group['customer_group_id']; ?>" selected="selected"><?php echo $customer_group['name']; ?></option>
<?php } else { ?>
<option value="<?php echo $customer_group['customer_group_id']; ?>"><?php echo $customer_group['name']; ?></option>
<?php } ?>
<?php } ?>
</select></td>
</tr>
<tr>
<td><?php echo $entry_status; ?></td>
<td><select name="status">
<?php if ($status) { ?>
<option value="1" selected="selected"><?php echo $text_enabled; ?></option>
<option value="0"><?php echo $text_disabled; ?></option>
<?php } else { ?>
<option value="1"><?php echo $text_enabled; ?></option>
<option value="0" selected="selected"><?php echo $text_disabled; ?></option>
<?php } ?>
</select></td>
</tr>
</table>
</div>
<?php foreach ($addresses as $result) { ?>
<div id="tab_address<?php echo $result['address_id']; ?>" class="page">
<input type="hidden" name="address_id[]" value="<?php echo $result['address_id']; ?>">
<input type="hidden" name="address_customer_id" value="<?php echo $result['address_customer_id']; ?>">
<table width="100%" class="form">
<tr>
<td width="150"><span class="required">*</span> <?php echo $entry_firstname; ?></td>
<td><input type="text" name="address_firstname[]" value="<?php echo $result['address_firstname']; ?>" />
<?php if ($error_firstname) { ?>
<span class="error"><?php echo $error_firstname; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_lastname; ?></td>
<td><input type="text" name="address_lastname[]" value="<?php echo $result['address_lastname']; ?>" />
<?php if ($error_lastname) { ?>
<span class="error"><?php echo $error_lastname; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_company; ?></td>
<td><input type="text" name="company[]" value="<?php echo $result['company']; ?>" /></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_address_1; ?></td>
<td><input type="text" name="address_1[]" value="<?php echo $result['address_1']; ?>" />
<?php if ($error_address_1) { ?>
<span class="error"><?php echo $error_address_1; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_address_2; ?></td>
<td><input type="text" name="address_2[]" value="<?php echo $result['address_2']; ?>" /></td>
</tr>
<tr>
<td><?php echo $entry_postcode; ?></td>
<td><input type="text" name="postcode[]" value="<?php echo $result['postcode']; ?>" /></td>
</tr>
<tr>
<td><span class="required">*</span> <?php echo $entry_city; ?></td>
<td><input type="text" name="city[]" value="<?php echo $result['city']; ?>" />
<?php if ($error_city) { ?>
<span class="error"><?php echo $error_city; ?></span>
<?php } ?></td>
</tr>
<tr>
<td><?php echo $entry_country; ?></td>
<td><select name="country_id[]" id="country_id<?php echo $result['address_id']; ?>" onchange="$('#zone<?php echo $result['address_id']; ?>').load('index.php?route=sale/customer/zone&country_id=' + this.value + '&zone_id=<?php echo $result['zone_id']; ?>');">
<?php foreach ($countries as $country) { ?>
<option <?php if ($country['country_id'] == $result['country_id']) { ?>SELECTED <?php } ?>value="<?php echo $country['country_id']; ?>"><?php echo $country['name']; ?></option>
<?php } ?>
</select></td>
</tr>
<tr>
<td><?php echo $entry_zone; ?></td>
<td id="zone<?php echo $result['address_id']; ?>"><select name="zone_id[]">
</select>
<script type="text/javascript"><!--
$('#zone<?php echo $result['address_id']; ?>').load('index.php?route=sale/customer/zone&country_id=<?php echo $result['country_id']; ?>&zone_id=<?php echo $result['zone_id']; ?>');
$('#country_id').attr('value', '<?php echo $result['country_id']; ?>');
//--></script></td>
</tr>
</table>
</div>
<?php } ?>
</form>
<div id="tab_orders" class="page">
<table class="list">
<thead>
<tr>
<td class="right"><?php echo $column_order; ?></td>
<td class="left"><?php echo $column_status; ?></td>
<td class="left"><?php echo $column_date_added; ?></td>
<td class="right"><?php echo $column_total; ?></td>
<td class="right"><?php echo $column_action; ?></td>
</tr>
</thead>
<tbody>
<?php if ($orders) { ?>
<?php $class = 'odd'; ?>
<?php foreach ($orders as $order) { ?>
<?php $class = ($class == 'even' ? 'odd' : 'even'); ?>
<tr class="<?php echo $class; ?>">
<td class="right"><?php echo $order['order_id']; ?></td>
<td class="left"><?php echo $order['order_status_name']; ?></td>
<td class="left"><?php echo $order['date_added']; ?></td>
<td class="right"><?php echo $order['total']; ?></td>
<td class="right"><?php foreach ($order['action'] as $action) { ?>
[ <a href="<?php echo $action['href']; ?>"><?php echo $action['text']; ?></a> ]
<?php } ?></td>
</tr>
<?php } ?>
<?php } else { ?>
<tr class="even">
<td class="center" colspan="5"><?php echo $text_no_results; ?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<script type="text/javascript"><!--
$.tabs('.tabs a');
//--></script>
</div>
</div>
<?php echo $footer; ?>
Line 183 contains the following code
Is the issue that there is a S on the end of order?
From what i have learned with this open cart is that it calls to different parts of the site and if something doesnt match on either side, it throws an error.
Code: Select all
<?php if ($orders) { ?>
From what i have learned with this open cart is that it calls to different parts of the site and if something doesnt match on either side, it throws an error.
Who is online
Users browsing this forum: No registered users and 8 guests