How To Delete From Multiple Tables In Prestashop

In this tutorial I will show you how do delete from multiple tables in prestashop using joins. Sometimes you may need to delete data which lies in more than one table so you will have to join in all tables where your information is and then delete it. If you used join in your selects… Continue reading How To Delete From Multiple Tables In Prestashop

How To Upload Images In Custom Prestashop Form

If you need to implement a custom form and upload images in prestashop you are in the right place because I will show you the entire code you will need to implement to achive this functionality. This tutorial is for prestashop 1.7 but you can try it can work for previews versions too. You don’t… Continue reading How To Upload Images In Custom Prestashop Form

Create a Custom Plugin For Smarty in Prestashop

What is actually a custom plugin for smarty in prestashop, is a code syntax defined by you and when smarty find that syntax will call a custom function, the function which you tell what should do. In this tutorial I will show you step by step how to implement this feature from scratch, this functionality… Continue reading Create a Custom Plugin For Smarty in Prestashop

How to create a table for admin controller prestashop

Here is how you can create a database table at the module instalation. If you have a small module you can save all settings in prestashop settings table, but if you need to save large data you need a new table only for your module. It is not so complicated to create this table, you… Continue reading How to create a table for admin controller prestashop

How To Create Custom Shortcodes In Prestashop

In this tutorial I will shoud you how to create custom shortcodes in prestashop. Prestashop does not come with this type of functionality so we will need to create it from scratch. For this example I will use an admin module created from scratch too, if you don’t know how to create a module you… Continue reading How To Create Custom Shortcodes In Prestashop

How To Save From Data In Admin Controller Prestashop

We passed together step by step the process to implement a custom tempalate for admin controller and we have create a sub-page (an edit page) for the main template. Now, in this tutorial I will show you how to save data from a custom form in admin controller and changes data structure as you wish. … Continue reading How To Save From Data In Admin Controller Prestashop

Create Sub Page For A Custom Template Admin Controller Prestashop

If you already know how to create a custom page for admin controller you can follow this tutorial and I will show you how to create a sub page of the main custom template admin controller, if not you can follow our tutorial for custom template implementation you can find the link at the end… Continue reading Create Sub Page For A Custom Template Admin Controller Prestashop

How To Assign Custom Template to Controller Prestashop Back Office

In this tutorial I will show you how to assign custom template a an admin controller in prestashop. This code can be used if you already have a controller created because I will put a little below the functions which will add the tab in left admin panel of prestashop. This feature is a little… Continue reading How To Assign Custom Template to Controller Prestashop Back Office

How To Create Custom Template For Admin Controller Prestashop

In this tutorial I will show you step-by-step how to implement a module from scratch and create a custom template for admin controller and show it as a tab in the left back office menu. Is quite complicated to implement this functionality in Prestashop if you are begginer because you do not find so many… Continue reading How To Create Custom Template For Admin Controller Prestashop

How To Create An Options Page For Module Prestashop

I will show you how to implement a new module in prestashop and how to create an options page for the module step by step. This is not very complicated you need to do only few steps to achive this.  First of all you need to go in the modules folder and create a new… Continue reading How To Create An Options Page For Module Prestashop