Step by step tutorial to use the Google Translate widget to be able to mass translate Prestashop modules, templates etc.
Latest posts
-
Dump all POST and GET keys and values (PHP)09/22/2024
Here is the PHP code dto dump all $_POST and $_GET keys and values to debug on a page
-
Add Whatsapp button to the contact page09/29/2024
Tutorial to add a Whatsapp button to the contact page of your Prestahop store.
-
Prestashop Translation Using Google Translate (Tutorial)09/22/2024
Step by step tutorial to use the Google Translate widget to be able to mass translate Prestashop modules, templates etc.
-
Dump all POST and GET keys and values (PHP)09/22/2024
Here is the PHP code dto dump all $_POST and $_GET keys and values to debug on a page
-
Add Whatsapp button to the contact page09/29/2024
Tutorial to add a Whatsapp button to the contact page of your Prestahop store.
-
Prestashop Translation Using Google Translate (Tutorial)09/22/2024
Step by step tutorial to use the Google Translate widget to be able to mass translate Prestashop modules, templates etc.
Blog categories
Search in blog
Archived posts
Dump all POST and GET keys and values (PHP)
Here is the PHP code dto dump all $_POST and $_GET keys and values to debug on a page:
foreach ($_POST as $key => $value) { echo "Key: $key; Value: $value<br>"; } foreach ($_GET as $key => $value) { echo "Key: $key; Value: $value<br>"; }
Related posts
-
Prestashop Translation Using Google Translate (Tutorial)
09/22/2024Step by step tutorial to use the Google Translate widget to be able to mass translate Prestashop modules, templates etc.Read more -
Add Whatsapp button to the contact page
09/29/2024Tutorial to add a Whatsapp button to the contact page of your Prestahop store.Read more
Leave a comment