Search found 303 matches

Search found 303 matches

Re: Where to find total price of cart ?

Code: Select all

catalog\model\total\total.php

Jump to post
  • Tue Dec 17, 2013 6:35 pm
  • Replies 2
  • Views 731
Re: strange code for me

This is not PHP code . this is jQuery Code ( a very popular JavaScript library )
link - http://jquery.com/

Jump to post
  • Sat Dec 14, 2013 3:29 pm
  • Replies 1
  • Views 633
Re: Adding a Product

make sure you are filling both category and subcategories
lets say you want your product in computers >> laptops
then also fill both laptop and computer in category field

Jump to post
  • Mon Dec 02, 2013 4:54 pm
  • Replies 1
  • Views 412
Re: Silly Question

in opencart admin go to sales >> customers >> customers
now click on edit on any customer, there you can see (and change) if customer has enabled the newsletter or not

Jump to post
  • Mon Dec 02, 2013 4:39 pm
  • Replies 2
  • Views 436
Re: Categories not shown in shop

this is not the default theme that comes with opencart, so its hard to tell what the problem is without looking at the code. what did you do that made this error appear ? installed some module or something? if its a paid theme you can always your theme developer to fix it or you might need to hire a...

Jump to post
  • Mon Dec 02, 2013 3:52 am
  • Replies 2
  • Views 689
Re: Stackexchange / Area 51 Opencart forum

reputation and upvote/downvote features are good but i feel forum like this are more structured/categorized.
moreover if its 'to the point programming' question one can always ask at stackoverflow and for more discussion oriented question these forums are more or less perfect.

Jump to post
  • Sat Nov 30, 2013 4:40 am
  • Replies 2
  • Views 707
Re: Desperate help for a complete newbie!

css file are in catalog/view/theme/default/stylesheet folder
if you are using some different theme select that folder in place of default in above path
btw for just changing logo image you don't need to edit stylesheet, you can upload logo in system setting in opencart admin

Jump to post
  • Thu Nov 28, 2013 6:58 pm
  • Replies 1
  • Views 468
Re: my website is closed showing " FOLDER CANNOT BE CREATED

reinstall vqmod using instruction from this site https://code.google.com/p/vqmod/
it might help, if it doesn't work post results here

Jump to post
  • Thu Nov 28, 2013 6:46 pm
  • Replies 1
  • Views 447
Re: Text entry box for information section

login to opencart admin then catalog >> information then edit/add whatever page you want

Jump to post
  • Thu Nov 28, 2013 6:39 pm
  • Replies 1
  • Views 441
Re: disable responsive template

there is no direct way, stylesheet of theme must be changed considerably (preferably by developer of that theme) . or if possible just use some other theme which is not responsive

Jump to post
  • Thu Nov 28, 2013 6:23 pm
  • Replies 1
  • Views 721
Re: Undefined variable:

double slashes in php (and many other languages) means the following line is a comment and is not executed, remove the slashes and it should work fine

Jump to post
  • Fri Oct 11, 2013 4:30 pm
  • Replies 4
  • Views 1105
Re: Undefined variable:

check if this line exist around line no 85

Code: Select all

$product_total = $this->model_catalog_product->getTotalProducts($data);
if not add add it

Jump to post
  • Fri Oct 11, 2013 2:53 am
  • Replies 4
  • Views 1105
Re: Can't change default theme

So why is there even a GUI option to set the theme with if I have to edit raw php? I also noticed that when I copied the default theme to mytheme, the thumbnail didn't appear in the settings. Where should this thumbnail come from? Does its absence mean the theme is broken? you are missing the point...

Jump to post
  • Fri Oct 11, 2013 2:46 am
  • Replies 7
  • Views 5277
Re: Parse error: syntax error, unexpected end of file

First, you pasted in wrong forum its not a opencart bug, its bug in external theme Second, next time wrap your code in code tags Third, i don't what developer of this theme wanted to but removing line 14-15 will remove this syntax error and might solve the problem, remove the following lines <?php i...

Jump to post
  • Fri Oct 11, 2013 2:36 am
  • Replies 2
  • Views 5001
Re: Underscore Necessary in Table Prefixes?

Its not compulsory to use underscore in prefix

example :
table prefix = mystore
table names :- mystoreorders , mystoreproducts etc...

table prefix = mystore_
table names :- mystore_orders , mystore_products etc...

conclusion - easier to read table names

Jump to post
  • Sat Jun 01, 2013 3:08 pm
  • Replies 3
  • Views 470
Re: Problem w/- Oc 1.5.4.1 and PHP 5.3.25

as a temporary solution you can set "use seo url's" to off in opencart settings, then contact developer of so called "route editor" module

Jump to post
  • Sat Jun 01, 2013 3:02 pm
  • Replies 2
  • Views 658
Re: Image won't popup on product page

it will open the source
what does this mean ??
use chrome press F12 , open console tab, then click on thumb image and see if some errors appear on console

Jump to post
  • Fri May 31, 2013 1:45 am
  • Replies 8
  • Views 1525
Re: Help needed for PHPMYADMIN & Database issues

use this

Code: Select all

ALTER TABLE `product` ADD COLUMN `auction` enum('0','1') NOT NULL DEFAULT '0', ADD COLUMN `date_auction` date NOT NULL;
and

Code: Select all

ALTER TABLE `product_discount` ADD COLUMN `customer_id` int(11) NOT NULL DEFAULT '0', ADD COLUMN `date_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP;

Jump to post
  • Fri May 31, 2013 1:39 am
  • Replies 9
  • Views 8089
Re: Soft 404 Errors

both pages are 404 you can check using chrome's developer tools or websites like this http://tools.seobook.com/server-header-checker/

Jump to post
  • Mon May 27, 2013 6:24 am
  • Replies 5
  • Views 2650
Re: Database prefix.. Good or bad?

depends on the developer of extension, if developer has enough knowledge of opencart he will make use $DB_PREFIX variable (defined in config.php) while making db queries. in my experience most of the extensions i have seen uses this variable. even if they don't use it you have to edit just a little ...

Jump to post
  • Mon May 27, 2013 1:36 am
  • Replies 3
  • Views 3188

Search found 303 matches