How To Change Httpd.conf File Without Removing Changes On Update

If you made some changes in httpd.conf file you probable notice that all your changes are removed after a while, anyway the time to be removed can vary 2-3 weeks. In the following I will show you how to change the httpd.conf file without lose your modifications. If you open up the httpd.conf look in… Continue reading How To Change Httpd.conf File Without Removing Changes On Update

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

How To Access Variable in tpl files Prestashop

It’s not that simple to access variable in header.tpl especially if you are beginner with Prestashop. To achive this task you need to override the Prestashop FrontController and there you can assign to smarty a new variable then you can call it in header.tpl. To do that you have to go in: override -> controllers… Continue reading How To Access Variable in tpl files Prestashop

How To Activate Cache In Symfony – FilesystemAdapter Symfony

Even if cache documentation exists in symfony website, I have not been able to find a good tutorial for how to activate or implement symfony cache system. So, I tried several methods until succeeded to implement the cache. Anyway I am sure there are other methods you can implement the filesystemadapter but I will show… Continue reading How To Activate Cache In Symfony – FilesystemAdapter Symfony

Custom Validatation For Phone Number Field Contact Form 7

Even if contact form 7 comes with many validation rules for its fields, sometimes you need a custom validation rule for a certain fields. Today we will task as an example the phone number where we will add a custom regex function to check how many numbers the number has and if it start with… Continue reading Custom Validatation For Phone Number Field Contact Form 7

How To Export HTML Table To CSV With jQuery

In your daily tasks sometimes you need to export some data to a file format the most used being PDF, Excel or CSV. Today, in this tutoial I will show you how to export a html table to csv using just javascript. With few lines of jquery we will create a CSV file and we… Continue reading How To Export HTML Table To CSV With jQuery