We always provide our best creative ideas at the highest level. Tell us about your project and we will make it work.
In this tutorial, we will show you how to redirect “Add to cart” button in Opencart version 1.4+, version 1.5+, version 2.0+ and version 3.0+ and take you directly to the shopping cart page. For Opencart 1.4+ versions For Opencart 1.4 versions it’s easy we can do it through the admin sectionIn Extensions->Modules under “Cart” […]
We are showing how to do automated testing of opencart functionalities and keep on monitoring your sites and also freely available. Uptimerobot.com and ghostinspector.com are two websites that I am using right now which are great and free How to set up https://uptimerobot.com in OpenCart? Signup for an account at https://uptimerobot.com/signUp You get an activation email […]
This Opencart tutorial shows how to change and customize emails send out to the store administrator when they get the new order in the OpenCart store. Normally Opencart just sends an email with fewer details like below: You have received an order.Order ID: 1088Date Added: 11/02/2019Order Status: CompleteProducts1x …. $0.00Order TotalsSub-Total: $0.00Total: $0.00 Let’s change […]
This simple Opencart OCMod file will remove the index.php?route= in Opencart and shorten the URL of OpenCart for contact us page, common home, checkout, cart, voucher, account, log in, manufacturer, affiliate login, password forget URL, and others. Once you download the above, you will get seo-url.ocmod_.zip extract it and rename it to seo-url.ocmod.zip, then go to […]
We make another free module today “Show only subcategories on category page OpenCart 2.0 free module” when enabled to category page then you will be able to see sub-categories of the active Category as a heading. Download “Show only subcategories on category page OpenCart 2.0 free module” from the link below:Download Show only subcategories on […]
Need to check if a string contains four sequential characters or consecutive characters/strings or identical letters/numbers/string/characters in PHP then following regex and code can be useful for you. I tested it with following code and regex is generated from https://regex101.com/r/W2wbFc/1 https://regex101.com/r/lH8oP1/3 https://regex101.com/r/oAAjto/1 https://regex101.com/r/Xbe1gH/1 <?php $re = ‘/(abcd|bcde|cdef|defg|efgh|fghi|ghij|hijk|ijkl|jklm|klmn|lmno|mnop|nopq|opqr|pqrs|qrst|rstu|stuv|tuvw|uvwx|vwxy|wxyz)+/xi’; $str = ‘rupakabcd test’; if(preg_match_all($re, $str, $matches)){ echo […]
This is an Opencart guide to create a dropdown of the quantity field of product in Cart Page Opencart 2.2. Download Dropdown Quantity of Product in Cart Page Opencart 2.2 Features: Instead of the textbox, select box shows in the quantity field of Cart. When you change quantity options then the cart will update automatically. […]
Today something went wrong with encoding in opencart – we cannot save the city with special language characters, like raga, but found out that it is a database field error. When we try to insert raga, it is inserted as R?ga. ? marks in place of special characters So we have to find out why […]
When you are installing the extension, you go to admin >> extensions >> installer and click the upload button and select the extension ocmod.zip file but you got the following error like “The directory catalog/controller/product is not allowed to be written to – Opencart error”. The way to solve it is to add the path […]
OpenCart Product listing default sort order is as per product name, and you can sort them with product name ASC or DESC, Model ASC or DESC, price ASC or DESC, quantity ASC or DESC and Status ASC or DESC just by clicking on the listing of the table heading. But if you want to sort […]
In the upcoming OpenCart 2.3, both template engines will be supported PHP template and twig engine. OpenCart will allow you to override all of the templates that are used to produce HTML markup so that you can fully control the markup that is being outputted within a custom theme. There are templates for each page […]
Feedback or Testimonial Module is the module for Opencart by which customers can provide their feedback about the site or product or any services. We were encouraged to develop it because there is a review system for the products but not for the site and services so we made this feedback or testimonial module. INSTALLATION OF […]
In this tutorial, we show how to pull products in JSON format through API in Opencart. First, read the post below to understand the OpenCart API: We take an example between two servers one from https://webocreation.com/nepalbuddha which acts as Server Responder of API which is built in OpenCart and https://tuliprsdynasty.com/api/ as the requestor. Responding server […]
The OpenCart API allows your application to access current data within OpenCart through the API, several common operations can be performed. Operations include: create — Creates with the specified parameters.For example, you can add products to the cart as given by OpenCart API post request of products or product_id at/index.php?route=api/cart/add read — Retrieves information about the specified […]
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 […]