Hi,
when using uc_vat, the item description is set to its title. So there's no way to alter description anymore.
In uc_vat.module,
line 70 $description = check_plain($item->title);
should be $description = uc_product_get_description($item);
Regards,
cfab
Comments
Comment #1
tahiticlic commentedIt's in uc_vat.theme.inc and it should be :
$description = check_plain($item->title) . uc_product_get_description($item);
Comment #2
longwaveFixed in CVS, thanks.