Page 4 of 16

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Fri Aug 05, 2011 5:59 pm
by i2Paq
opencartisalright wrote:Maybe this is an unfinished feature, but what is the point of the "Generate Invoice No." Link in the admin panel on the order details page? Because an invoice ID is already automatically generated and clicking the Generate link doesn't do anything (it's not actually linked to anything). So I'm assuming this is a "coming soon" feature, correct?
The Generate Invoice No. function is returning!! :D

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Fri Aug 05, 2011 11:50 pm
by eric1998
I Found a little problem.

My products is in special a 149.99 but if i have a discount 10 for 99.99
In the cart i have 10 X 149.99 = 1499.99 $
The real price is 10 X 99$
How can i Fix this ?
2011-08-05 11h48_45.png

2011-08-05 11h48_45.png (69.87 KiB) Viewed 5439 times

Thank you !

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 12:07 am
by i2Paq
eric1998 wrote:I Found a little problem.

My products is in special a 149.99 but if i have a discount 10 for 99.99
In the cart i have 10 X 149.99 = 1499.99 $
The real price is 10 X 99$
How can i Fix this ?

Thank you !
[1.5.0.5] Bug - Quantity Discount ignored with special price.

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 12:52 am
by Daniel
i2Paq wrote:
opencartisalright wrote:Maybe this is an unfinished feature, but what is the point of the "Generate Invoice No." Link in the admin panel on the order details page? Because an invoice ID is already automatically generated and clicking the Generate link doesn't do anything (it's not actually linked to anything). So I'm assuming this is a "coming soon" feature, correct?
The Generate Invoice No. function is returning!! :D

there is no generate invoice button in 1.5.1!

you mean you are using the SVN version if so don;t report it as a bug.

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 1:00 am
by i2Paq
Daniel wrote:
i2Paq wrote: The Generate Invoice No. function is returning!! :D

there is no generate invoice button in 1.5.1!

you mean you are using the SVN version if so don;t report it as a bug.
I'm not, but he is ;D :
opencartisalright wrote:Maybe this is an unfinished feature, but what is the point of the "Generate Invoice No." Link in the admin panel on the order details page? Because an invoice ID is already automatically generated and clicking the Generate link doesn't do anything (it's not actually linked to anything). So I'm assuming this is a "coming soon" feature, correct?

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 1:07 am
by Daniel
eric1998 wrote:I Found a little problem.

My products is in special a 149.99 but if i have a discount 10 for 99.99
In the cart i have 10 X 149.99 = 1499.99 $
The real price is 10 X 99$
How can i Fix this ?
2011-08-05 11h48_45.png
Thank you !

so don;t mix specials and price breaks!

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 9:27 am
by opencartisalright
Daniel wrote:
i2Paq wrote:
opencartisalright wrote:Maybe this is an unfinished feature, but what is the point of the "Generate Invoice No." Link in the admin panel on the order details page? Because an invoice ID is already automatically generated and clicking the Generate link doesn't do anything (it's not actually linked to anything). So I'm assuming this is a "coming soon" feature, correct?
The Generate Invoice No. function is returning!! :D

there is no generate invoice button in 1.5.1!

you mean you are using the SVN version if so don;t report it as a bug.
If you read my post, you'll see I wasn't reporting it as a bug, I was simply asking if this is an unfinished feature...

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sat Aug 06, 2011 12:03 pm
by Daniel
ok sorry.

Multi-Store Default Layout Change for Second Store

Posted: Sun Aug 07, 2011 3:39 am
by onlinemarketer
Possible Bug

Opencart 1.5.1.1

System>Settings>Edit (Second store)
Store Tab>Default Layout

Default Layout for second store is stuck on 'Account'

Doesnt change when changed to Default and saved, returns back to 'Account'

Any temporary fixes available?!

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 6:13 am
by onlinemarketer
Another possible bug

Opencart 1.5.1.1

Admin>Extensions>Modules>Carousel

When adding a second carousel, there is no option to choose the layout to assign it to.

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 6:13 am
by onlinemarketer
:-[ i'll add them to the google bug tracker

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 10:04 am
by Daniel
onlinemarketer wrote:Another possible bug

Opencart 1.5.1.1

Admin>Extensions>Modules>Carousel

When adding a second carousel, there is no option to choose the layout to assign it to.

anyone else have this problem?

works fine for me.

maybe you deleted all your layouts.

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 8:22 pm
by JNeuhoff
anyone else have this problem?

works fine for me.

maybe you deleted all your layouts.
I can confirm this bug, see attached screenshot.
screenshot-carousel.png

screenshot-carousel.png (36.95 KiB) Viewed 5291 times

And here is the fix:

In file admin/view/template/module/carousel.tpl, after the line containing

Code: Select all

	html += '    <td class="left"><input type="text" name="carousel_module[' + module_row + '][width]" value="80" size="3" /> <input type="text" name="carousel_module[' + module_row + '][height]" value="80" size="3" /></td>';
add this:

Code: Select all

	html += '    <td class="left"><select name="carousel_module[' + module_row + '][layout_id]">';
<?php foreach ($layouts as $layout) { ?>
	html += '      <option value="<?php echo $layout['layout_id']; ?>"><?php echo $layout['name']; ?></option>';
<?php } ?>
	html += '    </select></td>';

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 9:52 pm
by Maansy
I can confirm this bug too

i am confirming that the fix is working by the way

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 11:17 pm
by AddersPaw
JNeuhoff wrote: In file admin/view/template/module/layout.tpl, after the line containing
Just a note that the file to edit is 'admin/view/template/module/carousel.tpl' - layout.tpl does not exist in the folder, at least not on the latest version I've downloaded.

Many thanks for the fix!

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Sun Aug 07, 2011 11:47 pm
by JNeuhoff
Just a note that the file to edit is 'admin/view/template/module/carousel.tpl' - layout.tpl does not exist in the folder, at least not on the latest version I've downloaded.
You are right - I am still in the weekend mode :)

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Mon Aug 08, 2011 3:25 am
by brunno.eu
If you use several languages and if you are change the language, does not change the name and description of products.

Error in file catalog / controller / common / header.php

On line 107 add

Code: Select all

$ this-> cache-> delete ('product');

Re: Multi-Store Default Layout Change for Second Store

Posted: Mon Aug 08, 2011 6:07 am
by onlinemarketer
onlinemarketer wrote:Possible Bug

Opencart 1.5.1.1

System>Settings>Edit (Second store)
Store Tab>Default Layout

Default Layout for second store is stuck on 'Account'

Doesnt change when changed to Default and saved, returns back to 'Account'

Any temporary fixes available?!
Can anyone confirm this bug?

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Mon Aug 08, 2011 6:49 pm
by Daniel
fixed in svn.

Re: OpenCart 1.5.1.1 Bug Thread

Posted: Tue Aug 09, 2011 1:43 am
by onlinemarketer
I hate bothering Daniel! I feel like in taking up time that can be spent coding!

Anyway does anyone know which file in teh SVN daniel fixed for the above problem?

See here for issue link: http://code.google.com/p/opencart/issue ... -id&id=443

I dont want to upload all the files again, as I have a current 1.5.1.1 production copy and just need the fixed files!

Thanks!