Skip to main content

About The Author

Hi All,

Welcome to the Opencart Tutorial

I have 4.5 Year industry experience in E-commerce and Business website Development. I have created more then 50 Websites.


 I am expert in the opencart, wordpress , magento, PHP, HTML5, CSS.


I will write this tutorial on opencart website from Installation to module customization



Comments

Popular posts from this blog

Filter By Brand in opencart

<?xml version="1.0" encoding="UTF-8"?> <modification> <name>Brand By Filter</name> <id>Brand By Filter</id> <code>OCMP_BBF</code> <version>3.0.2</version> <vqmver required="true">2.4.0</vqmver> <author>ManiNalliapppan</author> <file path="catalog/controller/product/category.php"> <operation>             <search><![CDATA[$results = $this->model_catalog_category->getCategories($category_id);]]></search>             <add position="after"><![CDATA[// get manufacturers for child categories $categoryids_with_childs = array(); $categoryids_with_childs = $this->model_catalog_category->getCategoriesByParentId($category_id); array_push($categoryids_with_childs, $category_id); $manufacturers = $this->model_catalog_manufacturer->getManufacturersByCategories(...

Buy Now Adding in Product Page

<?xml version="1.0" encoding="UTF-8"?> <modification> <name>Buy Now Product</name> <id>Buy Now Product</id> <code>OCMP_BNP</code> <version>3.0.2</version> <vqmver required="true">2.4.0</vqmver> <author>ManiNalliapppan</author>     <file path="catalog/language/en-gb/product/product.php"> <operation>             <search ><![CDATA[ $_['text_year']                = 'year'; ]]></search>             <add position="after"><![CDATA[$_['text_buynow']                = 'Buy Now';]]></add>         </operation>   </file>    <file path="catalog/view/theme/default/template/product/product.twig"> <operation>        ...