Search found 6396 matches

Search found 6396 matches

Re: Zip Code no longer show on invoice

check system >> localisation >> language and the selected country with issue. Check the address format entered

Jump to post
  • Tue Jul 03, 2018 4:35 pm
  • Replies 4
  • Views 561
Re: is it possible to make "product detailed page" become the homepage?

If you do not have much products to feature, why not use the HTML module to add some text to the home page instead?

Jump to post
  • Wed Jun 20, 2018 1:41 pm
  • Replies 7
  • Views 782
Re: Payment Logos

Version of OpenCart?

Try catalog/language/{your-language}/{extension}/payment/{your-payment-module}.php

You can modify the language file, and add an image there directly.

Jump to post
  • Tue Jun 19, 2018 8:50 pm
  • Replies 1
  • Views 318
Re: A lot of problems after move folder storage in automatic ...

Are you using another language other than English? Seems like you're missing some lines, or if you have a 'default.php' in your language folder, try removing that.

Jump to post
  • Tue Jun 19, 2018 8:47 pm
  • Replies 4
  • Views 1143
Re: Store Logo Not showing up on Sales Email Order

OpenCart 3? Try checking if your image file has a space in the name, and try replacing space with underscores instead.

Jump to post
  • Mon Jun 18, 2018 10:53 pm
  • Replies 1
  • Views 815
Re: Automatic Opencart Upgrade

There isn't an automated way, and it isn't recommended. Extensions tends to need updates too when you upgrade OpenCart.

Jump to post
  • Mon Jun 18, 2018 10:53 pm
  • Replies 1
  • Views 450
Re: About Brain tree of payment methoed

I don't remember braintree being part of the solution OpenCart offers by default (unless I remembered it wrongly). Why not try contacting the developer?

Jump to post
  • Mon Jun 18, 2018 10:49 pm
  • Replies 2
  • Views 569
Re: Page/Content Background

The div ID is dynamically generated for each page.

For example, home page is #common-home, category page is #product-category.

You will need to add each of the IDs into your stylesheet if you wish to set the background.

Jump to post
  • Mon Jun 18, 2018 10:48 pm
  • Replies 1
  • Views 378
Re: Want to add View filter into edit product page

That looks like an extension in your admin, so perhaps you may want to get in touch with the developer :)

Jump to post
  • Mon Jun 18, 2018 10:46 pm
  • Replies 1
  • Views 303
Re: A lot of problems after move folder storage in automatic ...

There's some slight changes required for the config file when you upgrade to OC 3.

Open up config.php and admin/config.php file using your favourite text editor.

At the bottom, add the file path to your cache directory.

Code: Select all

define('DIR_CACHE', DIR_STORAGE . 'cache/');

Jump to post
  • Mon Jun 18, 2018 10:46 pm
  • Replies 4
  • Views 1143
Re: Google Analytics not functioning on Opencart 3.x

OpenCart 3 moved the GA settings. It's now under your extensions page, and you need to install the module. No hard coding required :)

Jump to post
  • Mon Jun 18, 2018 10:42 pm
  • Replies 1
  • Views 1465
Re: PHPMyAdmin: extract emails from customers who bought specific model (product)

Code: Select all

SELECT email FROM `order` o LEFT JOIN order_product op ON op.order_id = o.order_id WHERE op.model = 'ABC'
The above will get you the emails for customers who purchased product model 'ABC'

Jump to post
  • Mon Jun 18, 2018 10:41 pm
  • Replies 7
  • Views 1470
Re: List of customers who ordered a product - MySQL

Code: Select all

SELECT * FROM order_product op LEFT JOIN `order` o ON o.order_id = op.order_id WHERE product_id = 'X'
This will give you the relevant order details, filtered by a specific product ID. There, you will have the customer ID as well

Jump to post
  • Thu Jun 14, 2018 8:45 am
  • Replies 1
  • Views 517
Re: Creating a Custom Page in OpenCart 3

Hi, and thank you for your tutorial. I need to create 2 new custom pages. Please see: http://www.redraglyn.com/ I have already (with help) created html content in the left sidebar section and the list is in and ready to go (last link will be a .pdf so no new page needed for it). I presume your word...

Jump to post
  • Mon Jun 04, 2018 2:26 pm
  • Replies 24
  • Views 140661
Re: opencart 3.0.2

check your server logs for any php errors

Jump to post
  • Fri May 25, 2018 10:18 am
  • Replies 9
  • Views 1432
Re: Product Footer

Custom built theme? If so, there's lightly an extra closing div somewhere in your codes.

Jump to post
  • Tue May 15, 2018 10:48 pm
  • Replies 4
  • Views 394

Search found 6396 matches