|
demo: http://demo.opencart-help.com/003/
buy it here: http://store.shop-carts.net/octheme3-opencart-template
This is a 2 column Template , so when you set up the modules position , consider that
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- different tpl's and styles for modules set to center / sidebar;
- carousel style dysplay for product modules set to center;
|
|
Read more...
|
|
demo: http://demo.opencart-help.com/04/
buy from here: http://store.shop-carts.net/opencart-theme-one
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- category wall module;
- different tpl's and styles for modules set to center / sidebar;
- nice hover effects for modules set to center;
- psd files for slider banners included;
|
|
Read more...
|
|
demo: http://demo.opencart-help.com/06/
buy from here: http://store.shop-carts.net/bluestore-opencart-template
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- new title style for products and categories;
- different layout between modules seted to sidebars and center;
- psd file for banner included;
|
|
Read more...
|
|
Demo of template: http://demo.opencart-help.com/a2/
Buy the template here: http://store.shop-carts.net/estore-opencart-template
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- new title style for products and categories;
- different layout between modules seted to sidebars and center;
- psd file for banner included;
|
|
Read more...
|
|
In the stylesheet.css of the default theme (catalog/view /theme/default/ stylesheet/ stylesheet.css) the button used in all instances in opencart is defined
using this piece of code:
a.button { display: inline-block; padding-left: 6px; background: url('../image/button-left.png') top left no-repeat; text-decoration: none; cursor: pointer; } a.button span { color: #FFFFFF; line-height: 12px; font-size: 12px; font-weight: bold; display: inline-block; padding: 6px 12px 8px 5px; background: url('../image/button-right.png') top right no-repeat; } a.button:hover { background: url('../image/button-left-active.png') top left no-repeat; } a.button:hover span { color: #FFFFFF; background: url('../image/button-right-active.png') top right no-repeat; }
So, the button backgroung is image , acualy 2 images and they are located in the template image folder (catalog/view/theme/default/image) and they are named
|
|
Read more...
|
|
For those of you unfamiliar yet with opencart 1.5 , here it is how you set up the slider.
First you go in admin > system > design > banners , and there you either edit or insert banners.
When you clicked insert (or edit) you will be taken to the banner page. In that page you have to insert more images
by clicking "Add banner" if then you want a slideshow.
After you uploaded your images in the banner (is best if the images are the same size) , navigate trough admin to
extension > modules.
There , click edit on the module Slideshow.
There , you will click add module , and in the first column , its asking you to select a banner. So , there you
select the banner in which you uploaded more that one image (the images from that banner will appear on your
slideshow.
|
|
Read more...
|
|
>May be this code can help you share product to facebook Demo : http://grosirnesia.com (First, select product and find description tab)
Step 1 : Copy and put this script on your product desc (or other place/position)
- Code: Select all
<a href="http://www.facebook.com/sharer.php" name="fb_share" type="button_count">Share to Facebook </a><script src="http://static.ak.fbcdn.net/connect.php/js/FB.Share" type="text/javascript"></script></p>
|
|
Read more...
|
|
Deliver Date
Purpose: This extension makes it convenient to manage delivery schedules both for you and your customers. Delivery Date extension, includes configuration that allows you to set other parameters aside from the most convenient delivery schedule for you and your customers. You can also specify a minimal interval between the order and delivery date (such as 3 days, one week, etc.) Adding these settings to your store takes very little time and provides incredible value!
|
|
Read more...
|
|
This method doesn't strain the database for searching rand(). Instead it pulls back more products and uses php's shuffle() function
1. EDIT: catalog/controller/module/latest.php (or featured.php)
2. FIND:
- Code: Select all
$results = $this->model_catalog_product->getLatestProducts($this->config->get('latest_limit'));
3. REPLACE WITH:
- Code: Select all
$results = $this->model_catalog_product->getLatestProducts(10 * (int)$this->config->get('latest_limit')); srand((float)microtime() * 1000000); shuffle($results); $results = array_slice($results, 0, $this->config->get('latest_limit'));
|
|
Read more...
|
|
1a. If using 1.4.8 or later, EDIT: catalog/controller/module/latest.php 1b. If using 1.4.7 or earlier, EDIT: catalog/controller/common/home.php
2. FIND:
- Code: Select all
'name' => $result['name'],
|
|
Read more...
|
|
Easy add a Slide Show to your OpenCart Store.
Features: - Unlimited number of Slides. - Each Slide can have it's own Link. - Links can open in New Window or Existing. - Choose Fade Duration. - Choose Slide Duration.
|
|
Read more...
|
|
ome of you may find this useful, especially for larger stores. It's just a very simple jquery scroll to top. As OC as jquery built in it only requires 2 steps.
Before the </body> and after the last div on the footer.tpl (depends on your theme) add:
read full article here |
|
How to hide Add to cart if price is negative and show cart if price is >= 0. If it's equal to 0 must show add to cart.
I've tried this in product.tpl:
<?php if ($price < 0 ) { echo "See related products"; } else { ?> <div class="content"><?php echo $text_qty; ?> <input type="text" name="quantity" size="3" value="1" /> <a onclick="$('#product').submit();" id="add_to_cart" class="button"><span><?php echo $button_add_to_cart; ?></span></a></div> <div><input type="hidden" name="product_id" value="<?php echo $product_id; ?>" /> <?php }?>
|
|
Read more...
|
|
Hello everyone. This is my first Contribution, and it's a small one. I have been playing with OpenCart for a few months now and have finally decided to build and launch a full website based on OpenCart. During my venture building the website so far, I wanted to integrate a Featured Content Slider like you see on my websites such as Crutchfield.Com and others. Being that OpenCart uses jQuery, there are a lot of options for this. I wanted a pretty basic one that would allow for as many images and links as needed and would load everything automatically. The actual script I used and tutorial can be found here: http://webdeveloperplus.com/jquery/feat ... jquery-ui/" onclick="window.open(this.href);return false;. For the purpose of OpenCart though, I am writing this contribution to help others integrate it.
|
|
Read more...
|
|
It is very rare that this will be needed. Even when you think you have to duplicate a module like "flat rate", it is actually best done using one of the zone based options like weight-based or zone plus.
But in any case, for those that are hell bent on duplicating existing sideboxes, payment, or shipping modules. This hi-level breakdown should get you going.
1. CHOOSE THE FILES First think of which module you new module is most similar too. In this example, we will make a clone of the "Cash on Delivery" payment module and name it "Cash on Pickup".
|
|
Read more...
|
|
|
demo: http://demo.opencart-help.com/001/
buy it from here: http://store.shop-carts.net/oc-theme2-opencart-template
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- category wall module;
- different tpl's and styles for modules set to center / sidebar;
- nice hover effects for modules set to center;
|
|
Read more...
|
|
demo: http://demo.opencart-help.com/07/
buy from here: http://store.shop-carts.net/bleen-opencart-template
- Compatible with Opencart 1.5.0.4 - 1.5.0.5 - 1.5.1 - 1.5.1.1
- nice and modern design;
- different tpl's and styles for modules set to center / sidebar;
- nice hover effects for modules set to center;
- psd files for slider banners included;
- psd files for sidebar banners included;
|
|
Read more...
|
|
buy from here: http://store.shop-carts.net/news-blog-opencart-1.5
frontend demo: http://demo.opencart-help.com/05/index.php?route=information/news
admin demo: http://demo.opencart-help.com/05/admin
Login: demo and password: demo
Once you logged into admin navigate to extension>module>latest news , and from there to news pages;
News / Blog extension and module for opencart 1.5x
The extension: Gives you the posibility to insert news or blog articles which are being displayed in frontend in a news list and on individual pages;
new in oc 1.5 ver: ► seo urls for articles
► pagination system (10 intros per page)
► meta tag description for articles
► meta tag keywords for articles
|
|
Read more...
|
|
Having your own online store can be a great opportunity to gain money. One of the best advantages is that you do not have to invest a fortune to start it. All you need is a website and little basic knowledge. If you do not know anything, do not worry you will find plenty of tutorials on the internet. In this tutorial, you will learn how to install modules in opencart 1.5.1. It is not hard and you will be able to do it yourself as soon as you finish reading. It is true that if you are used to the older versions of Opencart, it may seem a little bit different however, the steps that you have to follow are quite similar. So, do not be stuck and ask for help before trying to fix the problem yourself. You will see that you will save money and in the same time, you will be able to teach others how to do it. So, let us start. If you are searching for how to install modules in opencart 1.5.1 it mean that, you know how to install everything until now and you are not a newbie. There is hope for you and your store.
|
|
Read more...
|
|
If you want to display the sku or location fields in the product description in opencart this is how you proceed:
Edit the file catalog/ controller/ product/ product.php
Find the line:
$this->data['reward'] = $product_info['reward'];
Below it , post the line:
$this->data['sku'] = $product_info['sku'];
hit save.
Now edit the file:
catalog/view/theme/yourtheme/template/product/product.tpl
Find the line:
<span><?php echo $text_model; ?></span> <?php echo $model; ?><br />
Below it add the line:
<span>New field name</span> <?php echo $sku; ?><br />
And save.
You can do the same thing for location , only use the word location instead of sku.
Now , what you will insert in admin in the sku field will apear in product page below model(or product code) |
|
If anyonewants to add the Facebook Like Button to their Opencart Store Follow the Following Instructions:
Requirements: - SEO URLs Must be Enabled
Instructions:
Edit the file: catalog/view/theme/default/template/product/product.tpl
Find this piece of code:
|
|
Read more...
|
|
I know I ran across someone asking this question and I can't find that post again and I don't know if this has ever been answered, so I will post my solution. If it's a dupe, my apologies to the mods.
In -- controller > common > home.php -- I added it around line 25, right under this portion
|
|
Read more...
|
|
I finally figured this out and wanted to share it with everyone, i would be lying if i said this was easy for me to figure out, but now that i have it looks so simple. (This also works for manufacturers, just use the same code and should work fine) This mod, if done correctly will show all the options and an AJAX add to cart button if there are options or just a QTY and add to cart button if there are no options.
This involves changes several files.
So if you are reluctant to changing files this mod is not for you
Until we get to the options section you can pretty much follow the thread above. But i will post it below anyway
modify OPENCART_ROOT/catalog/controller/product/category.php
|
|
Read more...
|
|
Here are the instructions on how to create the mod.
This is for version 1.4.8b but should work for any previous version providing you follow the correct folder structure. This was made created originally by me for 1.3.2 and updated to 1.4.8b
PLEASE PLEASE PLEASE BACK UP EVERYTHING YOU MODIFY BEFORE ADDING THIS MOD
I will not be responsible for anything you mess up while adding this modification.
Edit mysql database 'oc_product' table
insert new column after 'stock_status_id'
Name new column 'video'
|
|
Read more...
|
|
Go to catalog/controller/product/category.php
Find
- Code: Select all
if (isset($this->request->get['sort'])) { $sort = $this->request->get['sort']; } else { $sort = 'pd.name'; }
Change to
- Code: Select all
if (isset($this->request->get['sort'])) { $sort = $this->request->get['sort']; } else { $sort = 'p.date_added'; }
Find
|
|
Read more...
|
|
After seeing a thread earlier asking how to reset their admin password I thought I'd create a little app that hopefully will be useful when people get stuck. It's taken from my Wordpress admin reset file I made a while back, with just a few tweaks to allow resetting OC passwords - It's actually taken me more time to write this post than to code it
|
|
Read more...
|
There is a solution, I don't know whether you'd call it "easy". In your top level language file (ie. "catalog/language/english/english.php"), insert the following:- - Code: Select all
$_['text_no_price'] = 'Coming Soon';
Then in the following files:-
catalog/controller/product/category.php catalog/controller/product/manufacturer.php catalog/controller/product/search.php catalog/controller/product/special.php catalog/controller/product/product.php
|
|
Read more...
|
|
I've had a few requests for this from people who have visited my dev site. Since this is not mine (it's something that was in version 0.7.7), I'm quite happy to post the necessary information to get it working.
You will need to edit the following files:– * catalog/controller/common/header.php * catalog/language/english/common/header.php * catalog/view/theme/default/template/common/header.tpl * catalog/view/theme/default/stylesheet/stylesheet.css
|
|
Read more...
|
|
I've launched a new online store using OpenCart and I've been researching ways to improve your website presence and performance on search engines both safely and effectively.
On-Site SEO 1. Home Title (title of your website) should reflect your main keywords
2. Use SEO-friendly URL [ie - http://www.example.com/white-denim-jeans instead of http://www.example.com/productid_9399]
|
|
Read more...
|
|
First, navigate to your phpMyAdmin page via cPanel or whatever alternative administration system your host provides i.e. Plesk etc. and log in. From the dropdown box on the left (or the text link) click on your OpenCart database to show all the fields. In the main page, click on the 'Export' tab. Make sure the main 'Structure' 'select all' and 'Data' boxes are ticked. In the right box, make sure 'Add drop table', 'Add AUTO_INCREMENT value' and 'Enclose table and field names with backquotes' are ticked. select the SQL format in the 'export' column'. Tick 'Save as file'.
|
|
Read more...
|
|