-
Posts
5 -
Joined
-
Last visited
Community Answers
-
fix!'s post in I Want to show a custom field order_detail's in PaymentModule was marked as the answer
Finally i found the solution through a context variable,
$this->context->cookie->__set('proyecto',$_SESSION['blablabla']['proyecto']);
Then in PaymentModule.php:
$products_list .= '<tr style="background-color: '.($key % 2 ? '#DDE2E6' : '#EBECEE').';"> <td style="padding: 0.6em 0.4em;width: 15%;">'.Context::getContext()->cookie->proyecto.'</td> Thanks!