We always provide our best creative ideas at the highest level. Tell us about your project and we will make it work.
In Opencart 3 category, we list out Opencart 3 documentation, opencart 3 themes for free, opencart 3 extensions for free and Opencart 3 tutorial.
162 posts
To manage the Opencart admin section, opencart can have multiple users with different users group and each user group can have different permissions for the management of Opencart stores. The powerful user group is the Administrator by default but you can change it as per your requirement. For users, user groups, and permissions management, go [...]
Setting up an Opencart 4 ecommerce store involves several steps, including configuring your server, setting up FTP access, configuring email, and connecting your database. Here’s a detailed guide to help you through each step using cPanel. Server Setup Choosing a Hosting Provider: Accessing cPanel: Configuring PHP Settings: Setting Up FTP Access Creating an FTP Account: [...]
Choosing the right domain name and registering it is a crucial step in establishing your ecommerce website. Here’s a comprehensive guide to help you through the process. Choosing a Domain Name Checking Domain Availability Registering the Domain Managing Your Domain Additional Tips By carefully selecting and registering your domain, you lay a strong foundation for [...]
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 [...]
Opencart checks the IP address to allow the API calls, but sometimes you need to let all IP addresses do the API calls, for example, while testing the API. To allow all IP addresses to comment following the line of code at catalog/controller/api/account/login.php //$json['error'] = sprintf($this->language->get('error_ip'), $this->request->server['REMOTE_ADDR']); To learn more about Opencart API following posts [...]
This Opencart user manual is for getting started with the Opencart online eCommerce website for 2024 for beginners, we are listing the best videos, blog posts, examples guides, tips, and tricks to run your Opencart shop successfully. We are showing both the frontend and backend management of Opencart. Introduction In this opencart 4 user manual, [...]
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 [...]
Once we upgrade the PHP to the 8+ version we keep seeing the error like Warning: imagecreatefrompng(): gd-png: libpng warning: iCCP: known incorrect sRGB profile in /system/library/image.php on line 45. The fix that we implemented is by suppressing using @. Open system/library/image.php and find imagecreatefrompng($file); and add @ before it.
We were working to show the webocreation.com blog post to the rupaknepali.com.np but it keeps on showing the CORS policy error. So to fix that we implemented some transform rules in the Cloudflare as the webocreation.com was configured with it. JavaScript Code to fetch RSS feed URL and convert it into the HTML The code [...]
OpenCart developers, brace yourselves for a wave of nostalgia (and maybe a sigh of relief)! The highly missed functionality of Opencart 3 Ocmod is finally added back to OpenCart 4. After its absence in earlier versions, this familiar friend is back to streamline your extension development workflow. For those unfamiliar with Ocmod, it's a powerful [...]
Opencart API documentation for the developer: supports output formats that return a JSON response. Output formats are defined by specifying the output request parameter. With opencart API we can perform CRUD functionalities. Opencart 4 API documentation In Opencart 4 there are some changes on the API endpoints, here is the login API endpoint /index.php?route=api/account/login: Here [...]
In this Opencart tutorial, we are showing you the difference between the coding structure of a single instance Opencart module and an Opencart multi-instance module both in the admin section and the catalog section. In a single instance module, you install and can create only one setting and can use it in multiple places, but [...]
As lot of our customers were asking for the Buy Now Pay Later setup so we researched how to setup BNPL payment method in Opencart eCommerce. With the rise of e-commerce, new payment options have emerged, and one of them is Buy Now Pay Later (BNPL). This option allows consumers to purchase items immediately but [...]
Ways to configure the CKeditor to add the iframe, scripts and HTML markups like elements, attributes, classes, and styles.
One of our clients had products around 50k because of which the sitemap could not load and always throw 500 errors as Opencart tried to load all the products' sitemap URLs on one page. So, our solution is to show the sitemap URLs in a chunk of 500 and use the sitemap index. Solution: Although [...]