skip to Main Content

How to add new method in Opencart 2 – Redis

Why when i try to call $this->cache->keys('*') method in any controller im getting error: Uncaught Error: Call to undefined method Cache::keys() in /catalog/controller/product/category.php When i call $this->cache->set($key, $value) or $this->cache->get($key) methods in any controller they work fine. How to make…

VIEW QUESTION

Two input fields in one row – Twitter bootstrap

I am trying to display two registration fields onto the same row using Twitter Bootstrap. <div class="form-group required"> <label class="col-sm-2 control-label" for="input-firstname"><?php echo $entry_firstname; ?></label> <div class="col-sm-10"> <input type="text" name="firstname" value="<?php echo $firstname; ?>" placeholder="<?php echo $entry_firstname; ?>" id="input-firstname" class="form-control"…

VIEW QUESTION

OpenCart SEO isnt working even with rewrite mode enabled and SEO URLs = yes

I have opencart installed with ubuntu 14.04, my apache config file is: <VirtualHost *:80> ServerAdmin webmaster@localhost ServerName example.com ServerAlias www.example.com DocumentRoot /var/www/example.com/ <Directory /var/www/example.com> DirectoryIndex index.php Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny allow from all Require all granted…

VIEW QUESTION
Back To Top
Search