There is a fix for this that involves editing the Perl within the file called 'ActinicOrder.pm' within your Site1 folder.
Open this file in Notepad and search for the phrase:
'Check components in this order line'
You should come across the following code:
#
# Check components in this order line
#
foreach $pComponent (@aComponentsIncluded)
{
$ProdTable .= ProductLineHTML($pComponent->{'REFERENCE'},
$pComponent->{'NAME'} . $pComponent->{'DDLINK'},
$pComponent->{'QUANTITY'},
$sProductLineHTML);
}
Change this to read:
#
# Check components in this order line
#
foreach $pComponent (@aComponentsIncluded)
{
$ProdTable .= ProductLineHTML($pComponent->{'REFERENCE'},
$pComponent->{'NAME'} . $pComponent->{'DDLINK'},
$pComponent->{' '},
$sProductLineHTML); # QUANTITY
}
Note that this forum strips out all the tabs at the beginning of these lines so the actual appearence might look different in the actual file. Actinic is not able to provide any detailed support for script changes made. If you find that there is a problem, an original copy of the script can be found within the 'Original' folder in your installation. Copy this into your site folder.
I've been looking at the Perl on this one, but it all looks really odd. The cart display in the email seems to be work differently than online, so I have not been able to make any headway on trying to adjust it.
Comment