Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add datepicker in prestashop registration form (birthdate)

In the previous version of Prestashop 1.6 the registration form has datepicker for birthday field with a dropdown list where we can select month, day, year.

Prestashop Version 1.6 - Birthdate screenshot: Prestashop Version 1.6 - Birthdate screenshot

Then in the latest version of Prestashop 1.7.6+, the registration form for the birthdate field doesn't have datepicker, we need to manually type in date in the birthdate input field.

Prestashop Version 1.7.6+ - Birthdate screenshot: Prestashop Version 1.7.6+ - Birthdate screenshot

Where should I modify the file in order to show the date picker?

like image 914
ToiletGuy Avatar asked Sep 14 '25 05:09

ToiletGuy


1 Answers

Prestashop already has helper form of birthday field:

Find the file ../classes/form/CustomerFormatter.php

in line 196 change the setType('text') to setType('date'):

if ($this->ask_for_birthdate) {
    $format['birthday'] = (new FormField())
        ->setName('birthday')
        ->setType('date')   //change this to date
        ->setLabel(
            $this->translator->trans(
                'Birthdate',
                [],
                'Shop.Forms.Labels'
            )
        )
like image 109
MaXi32 Avatar answered Sep 15 '25 20:09

MaXi32