[Tutorial] Getting Started with OpenCart v1.5.x
46 posts
• Page 2 of 3 • 1, 2, 3
Re: [Tutorial] Getting Started with OpenCart v1.5.x
hi, i'm a new member here...
i have one question, is it possible when an order button get clicked then the customer will be taken to another website, not to page in my website?
Thank you
i have one question, is it possible when an order button get clicked then the customer will be taken to another website, not to page in my website?
Thank you
- jan567
- Posts: 1
- Joined: Sat May 26, 2012 9:32 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Hello,
I just installed opencart today and when i click on the admin page tab i get redirected to opencart.com, instead of http://www.mydomain.com/admin for some reason it redirect to opencart did i install this wrong ?
thank you.
I just installed opencart today and when i click on the admin page tab i get redirected to opencart.com, instead of http://www.mydomain.com/admin for some reason it redirect to opencart did i install this wrong ?
thank you.
- thegreendestiny
- Posts: 1
- Joined: Sun May 27, 2012 4:06 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Ajeno wrote:That sounds like a good plan!
When I woke up, this morning, thinking about it. I got the impression I could make my own "add to cart", and "View cart" buttons. And I just tell Opencart to associate the buttons to what they're meant to do.
One last thing. Once I've worked it all out. The design etc. Amd I able to save the template? Or do I need to write it all down, and do it again, once I've passed the website over to a host?
Thank you for all your advice by the way. You're a star!
You can. A lot of people replace the CSS buttons with image buttons. Example, in 1.5.2.1 take this in product/product.tpl
- Code: Select all
<input type="button" value="<?php echo $button_cart; ?>" id="button-cart" class="button" />
And make like this, filling in your image path:
- Code: Select all
<a id="button-cart"><img src="catalog/view/theme/default/image/addtocart.jpg" alt="Add To Cart"/></a>
The id is what is important. id=button-cart
-

avvici -arvixe- - Posts: 4323
- Joined: Tue Apr 05, 2011 4:09 am
- Location: Charlotte, NC
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Hi first of all i would like to thank you for all your amazing hard work with opencart. I really like it and have recently been convereted from being a Zen Cart lover to OpenCart admirer.
Being new to opencart (and with tight deadlines) I would really appriciate if you could guide me and excuse me if this is not the right place to ask this question. However, i could not find answers anywhere else.
does opencart (or can opencart) automatically create additional product images from one main image file name? E.g. in ZenCart I just import one main image reference into products table e.g. 1234.jpg while upload the rest of related images into the folder 1234_a.jpg, 1234_b.jpg and 1234_c.jpg Zencart automatically picks up those additional images and associates them with the main product image (usually relating it to Product Model ID)
So in short Can opencart do this? if so, please advise. IF not, is there an extenion or mod that could do this?
Many thanks in advance
Being new to opencart (and with tight deadlines) I would really appriciate if you could guide me and excuse me if this is not the right place to ask this question. However, i could not find answers anywhere else.
does opencart (or can opencart) automatically create additional product images from one main image file name? E.g. in ZenCart I just import one main image reference into products table e.g. 1234.jpg while upload the rest of related images into the folder 1234_a.jpg, 1234_b.jpg and 1234_c.jpg Zencart automatically picks up those additional images and associates them with the main product image (usually relating it to Product Model ID)
So in short Can opencart do this? if so, please advise. IF not, is there an extenion or mod that could do this?
Many thanks in advance
- Atish78
- Posts: 4
- Joined: Sat Jun 23, 2012 2:32 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Hi .. a newbie query
Could someone please tell me if OpenCart can associate additional images automatically if they were found in the images folder by referencing it with product main image name or product model?
e.g. main product image = 123.jpg
additional images 123_a.jpg, 123_b.jpg (zencart automatically associates these without manually adding them to product)
thanks
Could someone please tell me if OpenCart can associate additional images automatically if they were found in the images folder by referencing it with product main image name or product model?
e.g. main product image = 123.jpg
additional images 123_a.jpg, 123_b.jpg (zencart automatically associates these without manually adding them to product)
thanks
- Atish78
- Posts: 4
- Joined: Sat Jun 23, 2012 2:32 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
thank you! helpful thread!
- ThisIsParta
- Posts: 1
- Joined: Tue Jun 26, 2012 3:57 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
avvici wrote:You can. A lot of people replace the CSS buttons with image buttons. Example, in 1.5.2.1 take this in product/product.tpl
- Code: Select all
<input type="button" value="<?php echo $button_cart; ?>" id="button-cart" class="button" />
And make like this, filling in your image path:
- Code: Select all
<a id="button-cart"><img src="catalog/view/theme/default/image/addtocart.jpg" alt="Add To Cart"/></a>
The id is what is important. id=button-cart
@ avvici, that's exactly what i needed.
Thanks for advice quotes
-

popartns - Posts: 2
- Joined: Sat Jun 16, 2012 11:07 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
I very much look forward to it !
Fashion Form Organizatiocollectsnews on designer handbags from Gucci, Chanel, Hermes and more,designerjewelry from Cartier, Tiffany and more, clothing from Hollister, A&F and more.
- babyfate
- Posts: 1
- Joined: Tue Jul 31, 2012 8:02 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Can you help. I want to assign a product to its category! HOW?
- Clydach-Poultry
- Posts: 2
- Joined: Fri Aug 17, 2012 2:54 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
i am begginer, i am not getting how to set template home page for putting module at different - different position. and i want to create a new page for employee details and emplyee login.
- jenifferjones
- Posts: 1
- Joined: Fri Aug 31, 2012 9:30 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Clydach-Poultry wrote:Can you help. I want to assign a product to its category! HOW?
Just go to LINKS TAB under product insert/edit and check off a category.
-

avvici -arvixe- - Posts: 4323
- Joined: Tue Apr 05, 2011 4:09 am
- Location: Charlotte, NC
Re: [Tutorial] Getting Started with OpenCart v1.5.x
jenifferjones wrote:i am begginer, i am not getting how to set template home page for putting module at different - different position. and i want to create a new page for employee details and emplyee login.
I don't understand. Which module do you want to place where?

-

avvici -arvixe- - Posts: 4323
- Joined: Tue Apr 05, 2011 4:09 am
- Location: Charlotte, NC
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Thanks for your sharing- leonahj123
- Posts: 1
- Joined: Mon Sep 10, 2012 6:41 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Hello everyone, anyone know to make mp3 download by directly clicking download button if i place the product......
- prekey
- Posts: 5
- Joined: Tue Sep 25, 2012 3:36 pm
after installation categories show errors but that it
after installing opencart everything from front end to the back end seem to work except the categories in the front end and the products tab in the back end
guessing it connected give me error saying product_master missing
need some help the first opencart website I did worked fine but this one is giving me some issues
hopefully its just a simple fix I keep overlooking
https://liraclothing.com/bbuyer
thanks,
aaron
guessing it connected give me error saying product_master missing
need some help the first opencart website I did worked fine but this one is giving me some issues
hopefully its just a simple fix I keep overlooking
https://liraclothing.com/bbuyer
thanks,
aaron
- aronluis21
- Posts: 2
- Joined: Wed Sep 19, 2012 10:22 pm
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Very helpful sticky..
I was started to use opencart for my first e-commerce site. Still learn n learn.
Hope I can mastering OC faster
I was started to use opencart for my first e-commerce site. Still learn n learn.
Hope I can mastering OC faster

My very first OC : )
BrandBagus.com | Home Decor | Home Accessories | Kitchenware |Tools
BrandBagus.com | Home Decor | Home Accessories | Kitchenware |Tools
-

xdreamer - Posts: 14
- Joined: Thu Nov 01, 2012 4:36 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
thank for your guide. i am new in OpenCart. Could everyone recommend a optimized hosting to support Opencart ?
thank in advance.
thank in advance.
- comeya
- Posts: 1
- Joined: Mon Nov 12, 2012 7:28 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
Thanks for topic. We have long been using 1.5 though the differences are not large from 1.4 but I think that the progress is good. Good version!!!
-

dynamictemplate - Posts: 53
- Joined: Thu Dec 13, 2012 10:52 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
I've tried to keep notes of my experience with installing,but it doesn't work.
- forger
- Posts: 3
- Joined: Fri Jan 18, 2013 8:42 am
Re: [Tutorial] Getting Started with OpenCart v1.5.x
I am new to opencart, I currently have opencart 1.5.2.1, I tried to upgrade to the lasted version 1.5.5.1 . Tried following the download instructions. It crashed my site. luckly I had to reinstall the older version.
Can someone tell what i an doing wrong.
Thanks.
Can someone tell what i an doing wrong.
Thanks.
- odele
- Posts: 2
- Joined: Mon Jan 28, 2013 2:03 am
46 posts
• Page 2 of 3 • 1, 2, 3
Who is online
Users browsing this forum: No registered users and 4 guests
















