OpenCart 1.5.0 Released!
Re: OpenCart 1.5.0 Released!
That seemed to work just fine - thanks for prompt reply and accurate info
- rlec
- Posts: 18
- Joined: Mon Apr 04, 2011 7:49 pm
Re: OpenCart 1.5.0 Released!
Can't find in admin Layout section like it is on image here viewtopic.php?f=2&t=23130
Only Layout section where i can add/edit layout name, store and route.
Only Layout section where i can add/edit layout name, store and route.
- levon
- Posts: 22
- Joined: Fri Mar 05, 2010 1:36 pm
Re: OpenCart 1.5.0 Released!
Any info on when we can expect a 1.5.1 release of OC?
I'm using OpenCart 1.5.1.3
- ehandelsfabriken
- Posts: 29
- Joined: Wed Mar 09, 2011 10:20 am
Re: OpenCart 1.5.0 Released!
levon wrote:Can't find in admin Layout section like it is on image here viewtopic.php?f=2&t=23130
Only Layout section where i can add/edit layout name, store and route.
That idea was scrapped shortly after it was conceptualized there in those screenshots. There was some problem or other with making it work right.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: Banner order being weird
dannyfoo wrote:Just installed v1.5.0.3 and I've uploaded 2 new banners after the default Samsung. Renamed them Banner 1 (Samsung), Banner 2 (Cheese) and Banner 3 (Red chair).
But the slideshow loads; Banner 3, Banner 1 then Banner 2.
Advice on how-to make the banner load in order would be very helpful. Thanks.
Did you experience problems with the banner order as well?
I'm trying to understand where I went wrong and how to resolve this problem please.
-

dannyfoo - Posts: 5
- Joined: Mon Jun 27, 2011 4:05 pm
Re: OpenCart 1.5.0 Released!
Hi Daniel, can you give us an idea of when the upgrade script will be available?
- platypuspuzzles
- Posts: 107
- Joined: Sun Jan 23, 2011 12:11 pm
Re: OpenCart 1.5.0 Released!
platypuspuzzles wrote:Hi Daniel, can you give us an idea of when the upgrade script will be available?
well Q is working on that and he's currently on vacation, so I wouldn't expect it right away.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: OpenCart 1.5.0 Released!
Where do I go to edit the home page? I'd like to reduce the width of the slider and add a column off to the right of it.
- WebDev22
- Posts: 90
- Joined: Tue Apr 05, 2011 12:35 pm
Re: OpenCart 1.5.0 Released!
WebDev22 wrote:Where do I go to edit the home page? I'd like to reduce the width of the slider and add a column off to the right of it.
for the slider you would edit the slideshow module and change the dimentions. then for the column on the left you simply pick whichever module you want to show in the left column edit it and make sure there is a module for home page with position left column.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: OpenCart 1.5.0 Released!
I have a number of options available for a particular product, but if I click add to cart after options are selected the total price is only for the options - it does not add in the original cost of the item. Is there a setting I've missed?
- rlec
- Posts: 18
- Joined: Mon Apr 04, 2011 7:49 pm
Re: OpenCart 1.5.0 Released!
Hi,
After the name of each category there is a number that shows the quantity of products. But the thing is I don't want that number to show. What needs to be done to change that?
Thanks
After the name of each category there is a number that shows the quantity of products. But the thing is I don't want that number to show. What needs to be done to change that?
Thanks
- salebrale
- Posts: 6
- Joined: Fri Jul 01, 2011 10:55 am
Re: OpenCart 1.5.0 Released!
salebrale wrote:Hi,
After the name of each category there is a number that shows the quantity of products. But the thing is I don't want that number to show. What needs to be done to change that?
Thanks
There is no admin setting. It has to be done in the code. If you want to know how search the forums there are several posts about it.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Re: OpenCart 1.5.0 Released!
Xsecrets wrote:salebrale wrote:Hi,
After the name of each category there is a number that shows the quantity of products. But the thing is I don't want that number to show. What needs to be done to change that?
Thanks
There is no admin setting. It has to be done in the code. If you want to know how search the forums there are several posts about it.
Yes, there are some posts that explain how to show the number and that's for older version of opencart, but i want the opposite - NOT to show because in new opencart the number shows automatically. The reason is I don't have enough products yet so I don't want people to see that.
I'm not a php programmer so I don't know what to change in the code.
Any help will be appreciated.
- salebrale
- Posts: 6
- Joined: Fri Jul 01, 2011 10:55 am
Re: OpenCart 1.5.0 Released!
salebrale wrote:Xsecrets wrote:salebrale wrote:Hi,
After the name of each category there is a number that shows the quantity of products. But the thing is I don't want that number to show. What needs to be done to change that?
Thanks
There is no admin setting. It has to be done in the code. If you want to know how search the forums there are several posts about it.
Yes, there are some posts that explain how to show the number and that's for older version of opencart, but i want the opposite - NOT to show because in new opencart the number shows automatically. The reason is I don't have enough products yet so I don't want people to see that.
I'm not a php programmer so I don't know what to change in the code.
Any help will be appreciated.
Edit ../catalog/controler/module/category.php.
Find this line:
- Code: Select all
'name' => $child['name'] . ' (' . $product_total . ')',
and make it look like this:
- Code: Select all
'name' => $child['name'],
Find this line:
- Code: Select all
'name' => $category['name'] . ' (' . $product_total . ')',
and make it look like this:
- Code: Select all
'name' => $category['name'],
Save and upload,
Job done.
-

grgr - Posts: 818
- Joined: Mon Mar 28, 2011 8:08 am
Re: OpenCart 1.5.0 Released!
@grgr
Thank you that's exactly what I needed, however I need a little bit more help because the number in top menu bar is still showing (when category expands).
thanks again
Thank you that's exactly what I needed, however I need a little bit more help because the number in top menu bar is still showing (when category expands).
thanks again
- salebrale
- Posts: 6
- Joined: Fri Jul 01, 2011 10:55 am
Re: OpenCart 1.5.0 Released!
also if you are going to remove that do yourself a favor and comment out the product_total line a few lines up it will greatly speed things up if you have lots of categories and products.
OpenCart commercial mods and development http://spotonsolutions.net
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
Layered Navigation
Shipment Tracking
Vehicle Year/Make/Model Filter
- Xsecrets
- Posts: 5042
- Joined: Sat Oct 24, 2009 7:51 pm
- Location: FL US
Post Subject matter
Just as a matter of interest and help - it would be nice if Subject matter contained something that was relevant to the post/query. "Re: OpenCart 1.5.0 Released! is meaningless at the moment because the latest version/sub is somewhat higher than that - and as noted in some posts - people are sent to search the forum for issues that do not relate to the current version and could end up doing some radical damage to an install. Messing about with code for 1.5.x with 1.4.x solutions.
We are able to add or replace the actual subject matter when responding and it would help those who are looking for a soloution to find related posts.
Cheers
See this post has a subject matter that refers to the contents/query >:D
We are able to add or replace the actual subject matter when responding and it would help those who are looking for a soloution to find related posts.
Cheers
See this post has a subject matter that refers to the contents/query >:D
A stupid question is the one you -don't- ask.........(Anon)
)C1.5.0.1 (IN devel)
OC V1.4.9.5
OC V1.4.9.2
OC V1.4.7
OC V1.3.4
)C1.5.0.1 (IN devel)
OC V1.4.9.5
OC V1.4.9.2
OC V1.4.7
OC V1.3.4
-

cmebd - Posts: 405
- Joined: Fri Nov 13, 2009 3:17 am
- Location: Tasmania, Australia
Re: Post Subject matter
cmebd wrote:Just as a matter of interest and help - it would be nice if Subject matter contained something that was relevant to the post/query. "Re: OpenCart 1.5.0 Released! is meaningless at the moment because the latest version/sub is somewhat higher than that - and as noted in some posts - people are sent to search the forum for issues that do not relate to the current version and could end up doing some radical damage to an install. Messing about with code for 1.5.x with 1.4.x solutions.
We are able to add or replace the actual subject matter when responding and it would help those who are looking for a soloution to find related posts.
Cheers
See this post has a subject matter that refers to the contents/query >:D
You wished Sir?
Please check new topic title.
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.0 Released!
there is already a bug thread that is called 1.5.0.5
i don;t think we need more. only for major releases do we add to the main news section.
i don;t think we need more. only for major releases do we add to the main news section.
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: Post Subject Matter
Daniel,
Yes agree wholeheartedly, was not suggesting that another forum be created however each of the posts in this forum/topic don't need to carry the "main" topic title.
Am not entirely sure whether you were responding to my/i2Paq's post or something else? This is the issue. Sometimes responses to questions don't get answered for a couple of days so it is difficult, if all posts have the same subject matter, to understand without looking through countless posts, what some responses refer to or alternately some posts could be referring to any amount of previous posts on various subjects.
As an example the post below looking for info on Category/Product quantities - if it had something that referred to the question in the subject matter - then those responding could "reply" to that particular post and then all the suggestions pertaining to that subject would be recognisable. Alleviating quotes (that bulk up the response).
Yes there is always search - but that doesn't necessarily help for the majority of the time as posts don't necessarily refer to the 1.5.0 version. Another example would be to search for your post where you released 1.5.0.5.
Cheers
Try looking for the post where 1.5.0.1 and other incremented versions are announced......
Yes agree wholeheartedly, was not suggesting that another forum be created however each of the posts in this forum/topic don't need to carry the "main" topic title.
Am not entirely sure whether you were responding to my/i2Paq's post or something else? This is the issue. Sometimes responses to questions don't get answered for a couple of days so it is difficult, if all posts have the same subject matter, to understand without looking through countless posts, what some responses refer to or alternately some posts could be referring to any amount of previous posts on various subjects.
As an example the post below looking for info on Category/Product quantities - if it had something that referred to the question in the subject matter - then those responding could "reply" to that particular post and then all the suggestions pertaining to that subject would be recognisable. Alleviating quotes (that bulk up the response).
Yes there is always search - but that doesn't necessarily help for the majority of the time as posts don't necessarily refer to the 1.5.0 version. Another example would be to search for your post where you released 1.5.0.5.
Cheers
Try looking for the post where 1.5.0.1 and other incremented versions are announced......
A stupid question is the one you -don't- ask.........(Anon)
)C1.5.0.1 (IN devel)
OC V1.4.9.5
OC V1.4.9.2
OC V1.4.7
OC V1.3.4
)C1.5.0.1 (IN devel)
OC V1.4.9.5
OC V1.4.9.2
OC V1.4.7
OC V1.3.4
-

cmebd - Posts: 405
- Joined: Fri Nov 13, 2009 3:17 am
- Location: Tasmania, Australia
Return to News & Announcements
Who is online
Users browsing this forum: Chris_AXA, peterhob and 17 guests




















