Search found 35 matches

Search found 35 matches

Re: [Suggestion] Wikipedia Page Improvements For Opencart

Why is it nearly all negative and nothing good or has it changed recently?

What about all the features and how opencart have grown over the years.
Pimcore has a nice wiki it should be more like that: https://en.wikipedia.org/wiki/Pimcore

Jump to post
  • Mon Feb 27, 2017 4:14 am
  • Replies 4
  • Views 3714
Re: Checkout order CBA orders/email is unknown

Cheers I was searching google but the only results I could find was common wealth bank.

2. Instead of the extra database query is there a config option?
So change that block of code into:

Code: Select all

if (!$this->config->get('amazon_enabled')) {

Jump to post
  • Sat Jan 25, 2014 4:56 am
  • Replies 2
  • Views 576
Checkout order CBA orders/email is unknown

What does this comment mean?

Code: Select all

// Can not send confirmation emails for CBA orders as email is unknown
$this->load->model('payment/amazon_checkout');
if (!$this->model_payment_amazon_checkout->isAmazonOrder($order_info['order_id'])) {
1. What is a CBA order?
2. Why is the email unknown?

Jump to post
  • Fri Jan 24, 2014 9:41 pm
  • Replies 2
  • Views 576
Re: I made PDF invoice works perfectly in opencart

Creating html then converting it to pdf is just crazy. Just call the write cell methods individually.

Jump to post
  • Mon Nov 18, 2013 3:51 pm
  • Replies 6
  • Views 9735
Re: :: January Theme Competition! ::

GeeHim wrote: Image
Looks like somebody has just learnt how to use drop shadow, no offence but this text on the banner looks horrible.

Jump to post
  • Thu Jan 24, 2013 6:07 pm
  • Replies 29
  • Views 14457
HTTP_IMAGE removed in 1.5.5 why?

Code: Select all

define('HTTP_IMAGE', 'http://www.opencart.local/image/');
has been completely removed from the latest Opencart and wondering why?

I found this very useful for loading images under a separate sub-domain e.g: http://forum.opencart.com/viewtopic.php?f=138&t=40573

Jump to post
  • Thu Jan 24, 2013 6:01 pm
  • Replies 9
  • Views 3830
Re: Google Analytics Funnel Reporting & Goal Tracking

This is a brilliant module and it's working perfectly. 1. I would like to also track, if possible: a) Visitors adding products to the cart. b) Customers registering with the store. 2. Can you recommend any useful guides to using Google Analytics Ecommerce? I mean how to correctly read the data that ...

Jump to post
  • Fri May 18, 2012 10:07 pm
  • Replies 156
  • Views 64496
Add "type" to Document->links

I find that for each store I have to edit the class Document addLink() so that it supports "type" for RSS feed URLs. By the moment by default opencart only support href and rel. E.g: <link href="url" rel="alternate" type="application/rss+xml" /> public functio...

Jump to post
  • Sun Apr 08, 2012 12:12 am
  • Replies 0
  • Views 1975
Re: [vQmod] Remember customer email address when login

MrTech wrote:Is anything submitted that is useful ever deemed valid? lol
Maybe not, but anything that assist the customer in being able to log into the store can only increase sales :joker: .

Jump to post
  • Thu Apr 05, 2012 5:41 am
  • Replies 3
  • Views 2044
[vQmod] Remember customer email address when login

Small little vqmod to remember the customers email address when they are trying to login. E.g: A careless customer has by accident entered their password incorrectly. Why should they have to re-enter their email address? Sadly Daniel thinks this is "invalid" and wont add it to the core: ht...

Jump to post
  • Wed Apr 04, 2012 6:50 pm
  • Replies 3
  • Views 2044
Re: Clean Blank Theme for 1.5

Brilliant idea, this is the only reason I am put off using opencart sometimes, is because it can be so hard to change the look of the default theme without duplicating a lot of tpls. My ideas are: 1. Move all the onclick javascript to a jquery click method. Use data attributes to store the product i...

Jump to post
  • Wed Apr 04, 2012 12:00 am
  • Replies 22
  • Views 21113
When will opencart start to use html5?

Are there any plans to start using some of the HTML5 changes in Opencart core? The 2 main things I would like to see are: 1. Remove all the onClick from the DOM and use jQuery click methods. With HTML5 you can use the data- attributes to store the product ID etc. 2. Form input type. E.g type=email, ...

Jump to post
  • Mon Apr 02, 2012 11:55 pm
  • Replies 1
  • Views 778
Display message when addToCart if product options r required

When adding a product to the cart from anywhere apart from the product page, if the product has required options then you get redirected to the product page. This works correctly.... I would like to display a message to the customer once they have been directed to the product page notifying them tha...

Jump to post
  • Fri Mar 23, 2012 6:23 am
  • Replies 1
  • Views 361
Clean up default theme and easier to customise with CSS only

If you have ever tried to re-design the default theme with CSS alone you will most likely have found that you need to duplicate a lot of template files to style the most basic elements. Where as if the default theme was more like http://www.csszengarden.com/ example where you have a lot more control...

Jump to post
  • Thu Mar 22, 2012 8:33 pm
  • Replies 3
  • Views 1452
Re: problem adding options to product

Just experienced the same problem on my server and fixed by adding to php.ini [suhosin] suhosin.request.max_vars = 1000 suhosin.post.max_vars = 1000 Error Message ALERT - configured POST variable limit exceeded - dropped variable 'permission[modify][]' (attacker '94.172.154.127', file '/var/www/text...

Jump to post
  • Fri Dec 23, 2011 2:18 am
  • Replies 5
  • Views 693
How would I add to the image upload to rename spaces to %20

I am having a couple of html validation errors being caused my product images that have been uploaded with spaces. Where abouts would I add something to replace to spaces when images are uploaded in future? Would I need to change any other files? public function upload() { $this->load->language('com...

Jump to post
  • Tue Nov 22, 2011 8:00 am
  • Replies 1
  • Views 479
Re: Include .tpl inside of .tpl

Thank you Jay, sorry for double posting. Reply at stackoverflow.

JAY6390 wrote:I've actually answered this already on your stack overflow question...
http://stackoverflow.com/questions/7807 ... ide-of-tpl

Jump to post
  • Tue Oct 18, 2011 10:58 pm
  • Replies 2
  • Views 2642
Include .tpl inside of .tpl

I have tried using the basic PHP include methods although this does not work. How would I include a file inside of a template.tpl file. E.g I have separated the breadcrumbs into breadcrumbs.tpl that I can then include inside of each .tpl containing duplicate code, my breadcrumb layout is the same on...

Jump to post
  • Tue Oct 18, 2011 8:28 pm
  • Replies 2
  • Views 2642

Search found 35 matches