ToiletGuy
ToiletGuy

Reputation: 351

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?

Upvotes: 4

Views: 1384

Answers (1)

MaXi32
MaXi32

Reputation: 668

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'
            )
        )

Upvotes: 2

Related Questions