Best Answer SmetDenis , 28 January 2017 - 13:45
Решение
В файле
jbuniversal\cart-elements\order\email\email.php
Добавить внутрь класса следующий метод
/**
* Renders the element
* @param array $params
* @return mixed|string
*/
public function edit($params = array())
{
$mailto = $this->get('value');
if ($mailto) {
return sprintf('<a href="mailto:%s">%s</a>', $mailto, $mailto);
}
}
Go to the full post


This topic is locked








