You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ahojte, neriesili ste niekto ako doplnit do order_conf v moduly ps_emailalerts nazvy presnych ZBOXov ?
V beznom order_conf sa to pekne dotiahne ale do ps_emailalerts to nezoberie.
Neriesil to niekto ?
Diky za odpoved.
public function hookSendMailAlterTemplateVars(&$params)
{
if (
!isset($params['template'], $params['template_vars']['{id_order}'], $params['template_vars']['{carrier}']) ||
strpos((string)$params['template'], 'order') === false
) {
return;
}
$orderData = Db::getInstance()->getRow(
sprintf('SELECT `name_branch`, `id_branch`, `is_carrier`
FROM `%spacketery_order` WHERE `id_order` = %d AND `is_ad` = 0', _DB_PREFIX_, (int)$params['template_vars']['{id_order}'])
);
if (!$orderData) {
return;
}
$params['template_vars']['{carrier}'] .= ' - ' . $orderData['name_branch'];
if ((bool)$orderData['is_carrier'] === false) {
$params['template_vars']['{carrier}'] .= sprintf(' (%s)', $orderData['id_branch']);
}
}
The text was updated successfully, but these errors were encountered:
patrikv14
changed the title
Missing Zbox info in ps_mailalerts
Missing Zbox info in ps_emailalerts
Dec 17, 2023
Ahojte, neriesili ste niekto ako doplnit do order_conf v moduly ps_emailalerts nazvy presnych ZBOXov ?
V beznom order_conf sa to pekne dotiahne ale do ps_emailalerts to nezoberie.
Neriesil to niekto ?
Diky za odpoved.
The text was updated successfully, but these errors were encountered: