118 Posts
Use Helper Form and helper/form.tpl in Prestashop 1.7
PrestaShop has developed a great UI for its Backoffice, and one of the not-so-well-known powerful features is the HelperForm object. You can create pretty much anything...
Changing domain and base URL for PrestaShop 1.7
How to change your main domain in case you change your host? Or how to setup your dev environment on localhost when you import a live Production environment?
Specify the transition in an Advanced Javascript Code in Adobe Campaign
With the defaultJavascript Code
we only have 1 transition named ok
. But what if you want to use multiple transitions, depending on conditions? You have to...
Composer out of memory: Allowed memory size of 1073741824 bytes exhausted
php -v
php -d memory_limit=3G /usr/local/bin/composer require
How to display any Smarty template?
// display it right away $tpl = _PS_ALL_THEMES_DIR_.'/my_theme/templates/index.tpl'; $this->context->smarty->display($tpl);...
How to use Uploader, the Prestashop upload management class?
Tired of using $\_FILES
and move\_uploaded_file
? Well, Uploader is here to help you! No more error checking, extension safety, etc. This tutorial will show you how...
Add a module manually with Prestashop 1.7
Your UI is not working? Your Backoffice doesnβt allow you to install a module anymore because you tweaked it? You can install a module by hand in SQL directly by...
Create an Admin Controller for a custom SQL table (Part 1/2) [Prestashop 1.7]
Prestashop has developed a great admin interface: data table, filters, edit/create form, etc. But you know what? You can re-use this UI for your own SQL tables. This tutorial will...
Add variables from a Workflow in a Delivery in Adobe Campaign
You process then create variables in your Workflow and you would like to be able to use them in a delivery? You can! Adobe Campaign allows you to define Delivery...