VirtueMart Forum

VirtueMart Dev/Coding Central: VM1 (old version) => Virtuemart 1.1 Development (Archiv) => Quality & Testing VirtueMart 1.1.x => Topic started by: patrik60 on May 03, 2008, 11:47:11 AM

Title: Mail for download
Post by: patrik60 on May 03, 2008, 11:47:11 AM
I have made some minor changes in ps_order.php on line 252:

while($dbw->next_record()) {
$message .= $dbw->f("file_name").": ".$dbw->f("download_id")
. "\n$url&download_id=".$dbw->f("download_id")."\n\n";
}


change into

while($dbw->next_record()) {
  $message .= $dbw->f("file_name").":\n\n";
  $message .= $dbw->f("download_id")
  . "\n\n$url&download_id=".$dbw->f("download_id")."\n\n";
}


This way customers know exactly what to fill into the field in the download area, because this way product name and download-ID have now two separate lines. May be this could been added also in a future version of VM.
Patrik
Title: Re: Mail for download
Post by: PINC on June 25, 2009, 23:08:03 PM
I just wanted to thank you for this.
;)