on Prestashop 1.5, I try to get product->description in hookProductTab PHP module.
- the module hookProductTab is called before ProductController function initContent(), so it seems impossible to get module description
- what is the best way to get product->description
even in ProductController the following code does not work
$tplproducts = $smarty->tpl_vars['product']->value;
$m1 = $tplproducts->description_short;
Is there a solution to get product->description in hookProductTab PHP module ?