We always provide our best creative ideas at the highest level. Tell us about your project and we will make it work.
A week early Opencart.com launched its new design and layout, and we were going through the website and found that it is using full-width layout but default OpenCart installation does not have full width in the content area. Thus we started to make the full-width position for different layout in OpenCart 2.2. For OpenCart 3 [...]
Opencart is a powerful, user-friendly open-source e-commerce framework that allows businesses to create and manage their online stores with ease. It provides a comprehensive suite of features designed to streamline the process of selling products and services online. OpenCart's flexibility, coupled with its robust set of tools, makes it an excellent choice for small and [...]
Hi everyone, me Rupak Nepali. In our fifth video, we describe OpenCart objects and a list of methods. Today, in our sixth video we are going to describe OpenCart framework code flow and how requests and responses are handled by OpenCart. Describe how MVCL works in OpenCart which will create a good foundation to start [...]
This is a solution for the OpenCart error FTP needs to be enabled in the settings. Navigate to System >> Settings >> then edit store where you want to enable the FTP Then click FTP tab Enter FTP host usually "localhost", but make sure it is correct from your hosting. Enter port usually "21", but make [...]
In this opencart guide, we are showing you the OCMOD Modification System of Opencart 2.3 with an example of the "Show all products module" eCommerce. Opencart 4 OCMOD documentation Things to take care of while making an OCMOD file: Now go to the following link and download the "Display all Products" module Download shows all [...]
This OpenCart tutorial shows you how to add a google map to the contact us page of OpenCart without coding or programming knowledge, we will show you how to use the HTML content default OpenCart module and add the map to the contact us page. Let's get started by going to https://google.com/maps then searching your [...]
OpenCart identifies existing modules automatically, simply by reading the admin/controller/extension/module folder. Any modules existing in this folder will automatically be shown on the Modules listing page, and on the User Permissions page. Let's start to create our hello world module by creating the file at the admin/controller/extension/module and named it helloworld.php. Then follow the following steps: [...]
Opencart tip and trick to show discounts at featured products module in Opencart 2.3 for free, download and install and it will show discounts at the featured module. Click to Download Ocmod file to show discounts at featured module Go to catalog\language\en-gb\extension\module\featured.php Add following code: $_['text_discount'] = ' or more '; Go to catalog\controller\extension\module\featured.php Find [...]
Hey everyone! Rupak Nepali again. In our last video, we talked about "How to create database table?", Today we are talking about "OpenCart Library Predefined Objects’ Methods". An object has functions associated with it that are known as the object’s methods. Here we show predefined objects that OpenCart provided for which you don’t need to [...]
Hi everyone, Namaste, Me Rupak Nepali. In our third video, we describe OpenCart files and folders and told you that the next video will be of OpenCart code flow but while making the PowerPoint we feel like first, we need to know about the database and global methods of OpenCart then it will be easier [...]
Hi everyone! Me Rupak Nepali. I am very excited about the first video success – “Introduction and Table of Contents – OpenCart Development” and now this is the second video. In which I will install OpenCart 3.0.2.0 locally and set up a custom URL to work locally. To begin the installation process, first, download OpenCart. [...]
To configure and show default featured module you need to login to the Admin dashboard, then follow the following steps: Admin >> Extensions (Left Menu) >> Extensions >> Choose 'Modules' from the select box. It will list modules Find the Featured Module Then check ff the Featured module is already installed or not, if not [...]
Create a language file helloworld.php at "admin\language\en-gb\extension\module\", here en-Gb is the English language folder but if your store is multi-language then you have to create helloworld.php in another folder also like at "admin\language\OTHER_LANGUAGE_FOLDER\extension\module\". Now in helloworld.php, you will define variable that holds the text for that language. Starting defining a variable with $_['YOUR_VARIABLE_NAME'] and assign [...]