在Prestashop 1.6的以前版本中,注册表单有生日日期选择器字段,有一个下拉列表,我们可以在其中选择月、日、年。
Prestashop版本1.6 -生日截图:

然后在最新版本的Prestashop 1.7.6+中,出生日期字段的注册表中没有日期选择器,我们需要在出生日期输入字段中手动键入日期。
Prestashop版本1.7.6+ -生日截图:

我应该在哪里修改文件才能显示日期选择器?
发布于 2020-07-19 15:58:44
Prestashop已经有生日字段的帮助器表单:
找到文件../classes/form/CustomerFormatter.php
在第196行,将setType('text')更改为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'
)
)https://stackoverflow.com/questions/58998794
复制相似问题