Это типичная ошибка, когда jQuery на тот момент еще не был загружен, просто добавьте этот код $this->context->controller->addJquery();
в метод renderWidget
модуля /modules/ps_customersignin/ps_customersignin.php
когда hookDisplayHeader`.
Пример окончательного результата:
public function renderWidget($hookName, array $configuration)
{
if ($hookName == 'displayHeader' && method_exists($this->context->controller, 'addJquery')) {
return $this->context->controller->addJquery();
}
$this->smarty->assign($this->getWidgetVariables($hookName, $configuration));
return $this->fetch($this->templateFile);
}
После этого вам необходимо прикрепить модуль к крюку displayHeader в положениях модуля.