OpenCart 1.5.1.3 Bug Thread
Re: OpenCart 1.5.1.3 Bug Thread
JohanKoers wrote:Hi,
There is a bug in the products/extra images. When i copy a product main image is copied right but extra images are not copied. Only the first letter of the path of file in copied. Ive tried a new install with new database and still same problem.
See sceenshot. http://www.hcl.nl/image.png
This error appears in log
2011-11-04 11:48:17 - PHP Notice: Error: Could not load library json! in /mnt/web9/63/28/52259528/htdocs/shop/vqmod/vqcache/vq2-system_engine_loader.php on line 24
Thanks,
Johan
just fixed this. will be on svn soon.
OpenCart®
Project Owner & Developer.
OpenCart commercial support now available!
Project Owner & Developer.
OpenCart commercial support now available!
-

Daniel - Administrator
- Posts: 5173
- Joined: Fri Nov 03, 2006 10:57 am
Re: OpenCart 1.5.1.3 Bug Thread
werepair wrote:Hi, and thanks for the update,not sure if its a bug but i have the following errors in my error logs
2011-10-02 20:26:11 - PHP Notice: Undefined index: shipping_address_id in /home/wwwxxxxx/public_html/catalog/controller/checkout/shipping.php on line 11
2011-10-02 20:41:09 - PHP Notice: Undefined index: payment_address_id in /home/wwwxxxxx/public_html/catalog/controller/checkout/payment.php on line 11
THIS IS line 11
- Code: Select all
$shipping_address = $this->model_account_address->getAddress($this->session->data['shipping_address_id']);
best regards
1. EDIT: catalog/controller/checkout/shipping.php
2. FIND:
- Code: Select all
if ($this->customer->isLogged()) {
3. REPLACE WITH:
- Code: Select all
if ($this->customer->isLogged() && isset($this->session->data['shipping_address_id'])) {
4. EDIT: catalog/controller/checkout/payment.php
5. FIND:
- Code: Select all
if ($this->customer->isLogged()) {
6. REPLACE WITH:
- Code: Select all
if ($this->customer->isLogged() && isset($this->session->data['payment_address_id'])) {

Donate!|OpenCart Basics|GeoZones
Help me get more development cloud storage - Click Here to get DropBox
-

Qphoria - Administrator
- Posts: 18209
- Joined: Mon Jul 21, 2008 7:02 pm

Re: OpenCart 1.5.1.3 Bug Thread
Daniel wrote:try reuploading the files. maybe something missing.
I have tried uploading the files again, but to no avail. I even tried deleting all of the theme files, downloading fresh OC install files, and then uploading them again.. didn't work.
Maybe all that's left is a completely new install? It would be a pain, but I don't want that to be the only solution... what if this happens again after I've finished adding all of the products?
The sample page isn't working for you either, right? Do you have any suggestions for what might be missing?
- javiecastillo
- Posts: 15
- Joined: Thu Dec 30, 2010 6:27 pm
Could not load model localisation/order_status
OPENCART 1.5.1.3
admin->system->settings->edit:
Notice: Error: Could not load model localisation/order_status! in /hsphere/local/home/braindumps1/ecn88.websitehostings.us/system/engine/loader.php on line 37
admin->system->settings->edit:
Notice: Error: Could not load model localisation/order_status! in /hsphere/local/home/braindumps1/ecn88.websitehostings.us/system/engine/loader.php on line 37
- ecn
- Posts: 1
- Joined: Sat Nov 05, 2011 7:17 am
Re: Could not load model localisation/order_status
ecn wrote:OPENCART 1.5.1.3
admin->system->settings->edit:
Notice: Error: Could not load model localisation/order_status! in /hsphere/local/home/braindumps1/ecn88.websitehostings.us/system/engine/loader.php on line 37
It would be useful if you provided more details as nobody else can reproduce your error.
This is true with many bug reports here.
J.Neuhoff - MHC Web Design
OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
OpenCart Override Engine (Version 5.3)
allowing addons to override and modify core methods, language files and templates (see also FAQ)
-

JNeuhoff - Posts: 2113
- Joined: Tue Dec 04, 2007 7:38 pm
Re: OpenCart 1.5.1.3 Bug Thread
not a bug. its just inline style in .tpl file thing
in register.tpl line 76
better we use
instead of the inline style
in register.tpl line 76
better we use
- Code: Select all
<div class="pagination">
instead of the inline style
- Code: Select all
<div style="clear: both; padding-top: 15px; border-top: 1px solid #EEEEEE;">
-

Maansy - Posts: 930
- Joined: Wed Jun 23, 2010 10:04 pm
Re: OpenCart 1.5.1.3 Bug Thread
No big deal but the 'remove' buttons on the returns page are not showing up. Just missing the span tags to make the right hand part of the button visible.
In catalog/view/theme/default/template/account/return_form.tpl
Around line 121 Find:
Replace with:
Around line 177 Find:
Replace with:
Sorry if this has already been pointed out somewhere else - couldn't find it.
In catalog/view/theme/default/template/account/return_form.tpl
Around line 121 Find:
- Code: Select all
<div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><?php echo $button_remove; ?></a></div>
Replace with:
- Code: Select all
<div class="return-remove"><a onclick="$('#return-product-row<?php echo $return_product_row; ?>').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>
Around line 177 Find:
- Code: Select all
html += ' <div class="return-remove"><a onclick="$(\'#return-product-row' + return_product_row + '\').remove();" class="button"><?php echo $button_remove; ?></a></div>';
Replace with:
- Code: Select all
html += ' <div class="return-remove"><a onclick="$(\'#return-product-row' + return_product_row + '\').remove();" class="button"><span><?php echo $button_remove; ?></span></a></div>';
Sorry if this has already been pointed out somewhere else - couldn't find it.

- ccM
- Posts: 25
- Joined: Thu Aug 18, 2011 10:51 pm
- Location: QLD, Australia
Re: OpenCart 1.5.1.3 Bug Thread
today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
-

Maansy - Posts: 930
- Joined: Wed Jun 23, 2010 10:04 pm
Re: OpenCart 1.5.1.3 Bug Thread
Maansy wrote:today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
What steps to (re)-produce this as it does not happen to me.
Clean install + Dutch language.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9764
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: OpenCart 1.5.1.3 Bug Thread
i2Paq wrote:Maansy wrote:today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
What steps to (re)-produce this as it does not happen to me.
Clean install + Dutch language.
Just when I view a product, only once in a while.
-

Maansy - Posts: 930
- Joined: Wed Jun 23, 2010 10:04 pm
Re: OpenCart 1.5.1.3 Bug Thread
Hello, again, the comma.
admin\model\sale\order.php
Line: 348
admin\model\sale\order.php
Line: 348
$sort_data = array(
'o.order_id',
'customer',
'status',
'o.date_added',
'o.date_modified',
'o.total',
);
- neyzel
- Posts: 2
- Joined: Sat Sep 10, 2011 6:37 pm
Re: OpenCart 1.5.1.3 Bug Thread
Maansy wrote:i2Paq wrote:What steps to (re)-produce this as it does not happen to me.
Clean install + Dutch language.
Just when I view a product, only once in a while.
I cannot reproduce this, could be a vQmod issue(?).
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9764
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: OpenCart 1.5.1.3 Bug Thread
i2Paq wrote:Maansy wrote:i2Paq wrote:What steps to (re)-produce this as it does not happen to me.
Clean install + Dutch language.
Just when I view a product, only once in a while.
I cannot reproduce this, could be a vQmod issue(?).
it might be a vqmod issue.
today i saw lots of these:
2011-11-07 7:45:03 - PHP Notice: Undefined index: country_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 17
2011-11-07 7:45:03 - PHP Notice: Undefined index: zone_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 17
2011-11-07 7:45:03 - PHP Notice: Undefined index: country_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 31
2011-11-07 7:45:03 - PHP Notice: Undefined index: zone_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 31
and few of:
2011-11-08 5:00:14 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/session.php on line 11
2011-11-08 5:00:14 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/session.php on line 11
20
and:
2011-11-08 5:00:14 - PHP Notice: Undefined index: HTTP_HOST in /home/xxx/public_html/opencartstuff.com/system/library/currency.php on line 45
2011-11-08 5:00:14 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/currency.php on line 45
-

Maansy - Posts: 930
- Joined: Wed Jun 23, 2010 10:04 pm
Re: OpenCart 1.5.1.3 Bug Thread
Maansy wrote:today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
this only happens if you delete a customer while logged in as this customer. i fixed this on svn but this will not show to normal customers.
OpenCart®
Project Owner & Developer.
OpenCart commercial support now available!
Project Owner & Developer.
OpenCart commercial support now available!
-

Daniel - Administrator
- Posts: 5173
- Joined: Fri Nov 03, 2006 10:57 am
Re: OpenCart 1.5.1.3 Bug Thread
Maansy wrote:
it might be a vqmod issue.
today i saw lots of these:
2011-11-07 7:45:03 - PHP Notice: Undefined index: country_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 17
2011-11-07 7:45:03 - PHP Notice: Undefined index: zone_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 17
2011-11-07 7:45:03 - PHP Notice: Undefined index: country_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 31
2011-11-07 7:45:03 - PHP Notice: Undefined index: zone_id in /home/xxx/public_html/opencartstuff.com/system/library/tax.php on line 31
and few of:
2011-11-08 5:00:14 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/session.php on line 11
2011-11-08 5:00:14 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/session.php on line 11
20
and:
2011-11-08 5:00:14 - PHP Notice: Undefined index: HTTP_HOST in /home/xxx/public_html/opencartstuff.com/system/library/currency.php on line 45
2011-11-08 5:00:14 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/xxx/public_html/opencartstuff.com/index.php:49) in /home/xxx/public_html/opencartstuff.com/system/library/currency.php on line 45
HTTP_HOST is if you visit your site from an ip. set some redirect in your .htaccess.
OpenCart®
Project Owner & Developer.
OpenCart commercial support now available!
Project Owner & Developer.
OpenCart commercial support now available!
-

Daniel - Administrator
- Posts: 5173
- Joined: Fri Nov 03, 2006 10:57 am
Re: OpenCart 1.5.1.3 Bug Thread
Maansy wrote:today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
I have seen this to!
I was working on a store from a Dutch owner and there it was!
Plus some more.
- Code: Select all
Notice: Undefined index: country_id in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/library/tax.php on line 23Notice: Undefined index: zone_id in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/library/tax.php on line 23
- Code: Select all
Warning: Cannot modify header information - headers already sent by (output started at /home/deb52024/domains/horlogevoorjou.nl/public_html/index.php:100) in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/engine/controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home/deb52024/domains/horlogevoorjou.nl/public_html/index.php:100) in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/engine/controller.php on line 29
I think it has to do with rights on folders and files or an incorrect server setup/
This because I have no such issues on my server/installs
BUG!
When a customer has NO address in his/her account this error will occur during checkout etc.!
Instead there should be a message saying: "no order/shipping address".
Probably an account created via the Admin.
Make also sure your GEO-zones, VAT and Shipping zones etc. are setup correctly or you will have another issue that checkout will not proceed AFTER step 3 with that same account.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9764
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: OpenCart 1.5.1.3 Bug Thread
i2Paq wrote:Maansy wrote:today i saw this error on top of the product page:
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 17
Notice: Undefined index: country_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
Notice: Undefined index: zone_id in /home/xxxx/public_html/opencartstuff.com/system/library/tax.php on line 31
knowing i have tax turned off for all products
opencart v1.5.1.3.1 fresh copy + vqmods (but nothing for tax system)
any clue?
I have seen this to!
I was working on a store from a Dutch owner and there it was!
Plus some more.
- Code: Select all
Notice: Undefined index: country_id in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/library/tax.php on line 23Notice: Undefined index: zone_id in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/library/tax.php on line 23
- Code: Select all
Warning: Cannot modify header information - headers already sent by (output started at /home/deb52024/domains/horlogevoorjou.nl/public_html/index.php:100) in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/engine/controller.php on line 28Warning: Cannot modify header information - headers already sent by (output started at /home/deb52024/domains/horlogevoorjou.nl/public_html/index.php:100) in /home/deb52024/domains/horlogevoorjou.nl/public_html/system/engine/controller.php on line 29
I think it has to do with rights on folders and files or an incorrect server setup/
This because I have no such issues on my server/installs
BUG!
When a customer has NO address in his/her account this error will occur during checkout etc.!
Instead there should be a message saying: "no order/shipping address".
Probably an account created via the Admin.
Make also sure your GEO-zones, VAT and Shipping zones etc. are setup correctly or you will have another issue that checkout will not proceed AFTER step 3 with that same account.
Actually was having the same problem myself, and thanks to this thread solved my issue. In my case the only thing missing was the postcode from the default address which is a required field. I put that in and it then worked correctly, but was scratching my head for a while to find out why it was not working. This was an upgrade from v1.4.9.6 but is still on my test server. Agreed some sort of error message would have been nice!
- cantykiwi
- Posts: 63
- Joined: Mon Sep 13, 2010 4:37 am
Tax Class Page Bug
Hi wen i go to
System>Localisation>Taxes>Tax Classes
i get and cant edit tax classes :/
Notice: Error: Unknown column 'title' in 'order clause'
Error No: 1054
SELECT * FROM techno2_tax_class ORDER BY title ASC LIMIT 0,20 in /home/techno2/public_html/opencart/system/database/mysql.php on line 49
System>Localisation>Taxes>Tax Classes
i get and cant edit tax classes :/
Notice: Error: Unknown column 'title' in 'order clause'
Error No: 1054
SELECT * FROM techno2_tax_class ORDER BY title ASC LIMIT 0,20 in /home/techno2/public_html/opencart/system/database/mysql.php on line 49
- MaxxTechz-Erick
- Posts: 9
- Joined: Tue Nov 08, 2011 8:58 pm
Re: OpenCart 1.5.1.3 Bug Thread
i2Paq wrote:BUG!
When a customer has NO address in his/her account this error will occur during checkout etc.!
Instead there should be a message saying: "no order/shipping address".
Probably an account created via the Admin.
Make also sure your GEO-zones, VAT and Shipping zones etc. are setup correctly or you will have another issue that checkout will not proceed AFTER step 3 with that same account.
I see that this is solved in the SVN 1.5.2!
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9764
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Re: Tax Class Page Bug
MaxxTechz-Erick wrote:Hi wen i go to
System>Localisation>Taxes>Tax Classes
i get and cant edit tax classes :/
Notice: Error: Unknown column 'title' in 'order clause'
Error No: 1054
SELECT * FROM techno2_tax_class ORDER BY title ASC LIMIT 0,20 in /home/techno2/public_html/opencart/system/database/mysql.php on line 49
I cannot reproduce this.
Clean install or upgrade?
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
First Things First: Opencart Check List.
Documentation: Our Documentation section.
BUGs?: Known BUGS for All OC Versions.
Problemen met de BTW?: [How to] BTW + Verzend & betaalmethodes.
-

i2Paq - Global Moderator
- Posts: 9764
- Joined: Mon Nov 09, 2009 11:00 am
- Location: Winkel - The Netherlands
Who is online
Users browsing this forum: ramilandaya and 15 guests













