Search found 75 matches

Search found 75 matches

Re: Change the colour of the Loading Buttons

You will have to set the colors first then copy the file to your stylsheet.css file

Code: Select all

.btn-primary.active.focus {
	border-color: green;
	background-color: green;
}

Jump to post
  • Sat Dec 01, 2018 11:50 pm
  • Replies 3
  • Views 560
Re: Index page cannot be open!

There must be some error somewhere on your homepage controller. Currently it's returning error 500. You can check your error log to find the problem.

Jump to post
  • Sat Dec 01, 2018 11:47 pm
  • Replies 2
  • Views 242
Re: Change the colour of the Loading Buttons

Change the background color/border-color using this selector.

Code: Select all

.btn-primary.active.focus {
}

Jump to post
  • Sat Dec 01, 2018 10:51 pm
  • Replies 3
  • Views 560
Re: Can someone develop this mod for me!!???

Thank you for trusting me on this project.

Jump to post
  • Thu Aug 23, 2018 10:46 am
  • Replies 2
  • Views 614
Re: Drop Shipping/Consignment

You can have a single store, the have different user groups which can upload products in the admin. You will need modifications though so the user groups can only see their own products and sales or just add to an existing inventory, front-end works like a normal opencart site.

Jump to post
  • Mon Apr 03, 2017 10:53 am
  • Replies 1
  • Views 546
Re: Cheking out issues

List down all the issues you find then hire someone to fix it for you, not much else you can do right now.

Jump to post
  • Fri Mar 24, 2017 9:16 am
  • Replies 3
  • Views 660
Re: Accidentally deleted data from product.tpl !!!

You can download the opencart source then compare the codes to check which line are missing.

Jump to post
  • Wed Mar 22, 2017 1:15 am
  • Replies 15
  • Views 2327
Re: User Groups missing from the admin dashboard menu

Attached is a fast fix for it, just uninstall the modification once that permission is added.

Jump to post
  • Tue Mar 21, 2017 11:39 am
  • Replies 3
  • Views 982
Re: Product options limit

Try increasing the max_input_vars. Add this to your htaccess file.

Code: Select all

php_value max_input_vars 5000

Jump to post
  • Mon Mar 20, 2017 10:21 pm
  • Replies 4
  • Views 1264
Re: ERROR LOG

Find the most repeated errors and fix the problem on your site. You can do this till most of the common errors are gone.

Jump to post
  • Sun Mar 19, 2017 5:36 pm
  • Replies 2
  • Views 1234
Re: Blur/Not sharp images on website

Try setting the jpeg conversion quality to 100.
Its on system/library/image.php
Find this line.

Code: Select all

public function save($file, $quality = 90) {

Jump to post
  • Tue Sep 22, 2015 3:38 pm
  • Replies 6
  • Views 3340
Re: Invalid token session. Please login again.

Try the fix on this link. http://stackoverflow.com/questions/8311320/how-to-change-the-session-timeout-in-php This part. // server should keep session data for AT LEAST 1 hour ini_set('session.gc_maxlifetime', 3600); // each client should remember their session id for EXACTLY 1 hour session_set_cook...

Jump to post
  • Tue Sep 08, 2015 7:45 pm
  • Replies 8
  • Views 5097
Re: Extension installer FTP Error

Just keep it, the new install.php write files locally instead of ftp. You might need it if you install other extensions.

Jump to post
  • Tue Sep 01, 2015 7:10 pm
  • Replies 6
  • Views 1426
Re: Extension installer FTP Error

backup first this file
admin/controller/extension/installer.php

Replace it with the attached file. Click on the clear button first, then upload again the extension.

Jump to post
  • Tue Sep 01, 2015 5:07 pm
  • Replies 6
  • Views 1426
Re: since a day I have this UA-66815705-1 on the left op my

Try looking for it on this file if its there.
catalog/view/theme/default/template/common/header.tpl

If not, it should be under Settings > Edit Store >> Google[Tab]

Jump to post
  • Mon Aug 31, 2015 8:54 pm
  • Replies 4
  • Views 421
Re: Call to undefined function

Try something like this. The previous one looks only at the at the assigned folder variable making it loop infinitely. class ModelCatalogDownload extends Model { function filesInDir($tdir = "/home/bruce/public_html/cat/system/download") { $added = 0; $dirs = scandir($tdir); foreach($dirs a...

Jump to post
  • Mon Aug 31, 2015 8:45 pm
  • Replies 5
  • Views 1445
Re: Call to undefined function

change the code from
filesInDir($tdir.'/'.$file);

to this one
$this->filesInDir($tdir.'/'.$file);

Jump to post
  • Mon Aug 31, 2015 12:53 pm
  • Replies 5
  • Views 1445

Search found 75 matches