如何使checkstopop 1.7中的默認選項卡在checkout過程中被選中?如何在結賬過程中在prestashop 1.7中默認選中通訊複選框?
更新: 我發現那裏的形式rendrered文件: \模塊\ ps_emailsubscription \ ps_emailsubscription.php
但是足夠驚人有定義沒有改變屬性的功能。
public function hookAdditionalCustomerFormFields($params)
{
$label = $this->trans(
'Sign up for our newsletter[1][2]%conditions%[/2]',
array(
'[1]' => '<br>',
'[2]' => '<em>',
'%conditions%' => Configuration::get('NW_CONDITIONS', $this->context->language->id),
'[/2]' => '</em>',
),
'Modules.Emailsubscription.Shop'
);
return array(
(new FormField())
->setName('newsletter')
->setType('checkbox')
->setLabel($label));
}