Re: fix header top
i assume you're using you were using default theme, here are a quicker way. in your stylesheet inside #top class, add "position: fixed; z-index: 9999; width: 100%;" without quote then add new class called "header .container" then set the "padding-top" for it to suit you...
Jump to post- Fri Mar 04, 2016 8:37 pm
- Replies 7
- Views 1430
Re: Slideshow Banner and Featured Product not appear in OC 2
how am i supposed to do next? I'm still unable to display my product in featured product (homepage) and also displaying slideshow banner. Thanks a bunch! i am sorry, but you did not yet answers my question(how did you add them?) we just want to confirming that you're doing the right steps to archiv...
Jump to post- Fri Mar 04, 2016 8:04 pm
- Replies 15
- Views 1890
Re: Cart Update / Refresh Problem
i assume that you were just upgraded to oc2 from oc1. if so then open up this 2 .tpl files catalog/view/theme/your_theme/template/common/cart.tpl AND catalog/view/theme/your_theme/template/checkout/cart.tpl
search for(if you have)
Code: Select all
$product['key']
Code: Select all
$product['cart_id']
- Fri Mar 04, 2016 12:33 pm
- Replies 5
- Views 2653
Re: Local - Region/State are not listing
Admin->Setting->Localisation->Zones->[ + ] add button->Enter the states detail and save
Jump to post- Fri Mar 04, 2016 2:01 am
- Replies 2
- Views 374
Re: Related Products shown in one line
in your catalog/view/theme/default/template/product/product.tpl
search for
Code: Select all
col-lg-3 col-md-3 col-sm-6 col-xs-12
Code: Select all
col-xs-6 col-sm-3
- Fri Mar 04, 2016 1:50 am
- Replies 5
- Views 766
Re: Count number of a product sold in x days
on your controller foreach ($results as $result) { //index 1 ..etc //public function totalsold30days() { //remove $this -> data ['sold30'] = $this -> model_catalog_product -> totalsold30days($result['product_id']); //} //remove ... etc in your model file public function totalsold30days($product_id){...
Jump to post- Thu Mar 03, 2016 11:50 pm
- Replies 6
- Views 2280
Re: Count number of a product sold in x days
give this a try public function totalsold30days(){ $query = $this->db->query("SELECT sum(op.quantity) AS total FROM order_product op LEFT JOIN `order` o ON (op.order_id = o.order_id) WHERE product_id=257 AND DATE(date_added) >= CURDATE()-INTERVAL 1 MONTH"); return $query->row['total']; }
Jump to post- Thu Mar 03, 2016 9:38 pm
- Replies 6
- Views 2280
Re: Undefined Index: activate
I am having weird issues with my newly upgraded oc2.0.3.1 site, basically I am unable to make any footer.tpl changes take effect and some extensions are just not showing on front end. I am seeing multiple mass errors in logs: 2016-02-24 10:55:00 - PHP Notice: Undefined index: activate in /home/kanb...
Jump to post- Thu Mar 03, 2016 6:00 pm
- Replies 18
- Views 2459
Re: Installing an extension
i would think one of your ocmod CDATA is not complete as it should be something like this
Code: Select all
<![CDATA[YOUR_SEARCH_OR_ADD_STATEMENT]]>
- Thu Mar 03, 2016 4:50 pm
- Replies 3
- Views 446
Re: Categories Truncating
if you are using oc2.1.X make sure you have this on your admin/model/catalog/category.php
Jump to post- Thu Mar 03, 2016 1:29 pm
- Replies 4
- Views 381
Re: Slideshow Banner and Featured Product not appear in OC 2
From my understanding on the 1st post, you does not installed any oc/vqmod yet + you were using default or close to default theme am i correct? And all you just do was removing the default opencart data but you cant find a way to add them back(banner, slideshow, feature product etc..) So i would lik...
Jump to post- Thu Mar 03, 2016 12:40 pm
- Replies 15
- Views 1890
Re: Adding text to home page
did you mean between search entry and logo? if it is then you gonna get a custom modification for this, "Who are We?" perhaps you mean "About Us"? you may take a look at admin->Catalog->Information->About Us but with this it will only show on your footer(below)
Jump to post- Thu Mar 03, 2016 2:06 am
- Replies 5
- Views 2106
Re: Slideshow and carousel not appear at front!
just FYI as of default oc installation, table oc_banner_image_description do not come with a column link and image but oc_banner_image does. delete this 2 column from "oc_banner_image_description " will fix the issue right away, the reason your banner wont appear was because you have a dup...
Jump to post- Thu Mar 03, 2016 1:02 am
- Replies 33
- Views 4461
Re: remove the "My delivery and billing addresses are the sa
I still need help two months later and no reply yet Two months... that's ridiculous!!! If I were in you, I would ask for my money back! ;D Excuse me.. Can anyone help here??? Anyone??? lol,i would think he will if opencart is a commercial platform ;D btw this for guest only, and does not remove, on...
Jump to post- Wed Mar 02, 2016 4:49 pm
- Replies 5
- Views 2051
Re: Simple zone based shipping
you may want to take a look at my shipping extension Shipping Costs By Geo Zones
Jump to post- Tue Mar 01, 2016 10:31 pm
- Replies 5
- Views 904
Re: vQmod 403 forbidden
there are file called pathReplaces.php inside vqmod folder, read them :) Sorry but I don't have that file. - vqmod -- install --- .htaccess --- ugrsr.class.php -- vqcache (created by me) -- .htaccess -- readme.txt -- vqmod.php That's all :( read my edited post, thanks https://github.com/vqmod/vqmod...
Jump to post- Tue Mar 01, 2016 7:02 pm
- Replies 5
- Views 2748
Re: vQmod 403 forbidden
do you have a file name called pathReplaces.php inside the vqmod folder? if not you may have installed the standalone version instead of opencart version
Jump to post- Tue Mar 01, 2016 6:57 pm
- Replies 5
- Views 2748
Re: Admin language change , order list doesnt change languag
i am scare there still no mods for this
Jump to post- Tue Mar 01, 2016 2:16 pm
- Replies 5
- Views 1578
Re: Admin language change , order list doesnt change languag
no, you're not missing any. this always happen if the customer placed an order with english languages on the front-end because its only stored the selected language to database
Jump to post- Tue Mar 01, 2016 1:52 pm
- Replies 5
- Views 1578
Re: Issue Importing DataBase\Can't Manually Install
you also may try this method which is much easier to understand but ima not sure if this can fix the issue(most probably will)
http://forum.opencart.com/viewtopic.php?t=59363#p277957
- Tue Mar 01, 2016 1:19 pm
- Replies 4
- Views 742