Hello Cory,
I just added this functionality-- it should be appearing in the next version (after 4.0.1). In the meantime, if you'd like to add it yourself, open ./modules/Quotes/layouts/Standard.php (and/or Invoice.php) and find the following lines (~200-204):
Code:
$options['width'] = 545;
$options['xPos'] = 25;
$pdf->ezSetDy(-20);
$pdf->ezTable($item,'' ,'' ,$options);
$pdf->ezSetDy(-20);
And change it to:
Code:
$options['width'] = 545;
$options['xPos'] = 25;
$pdf->ezSetDy(-20);
$bundle_name_options = array('aleft' => 24);
$pdf->ezText($product_bundle->name, 13, $bundle_name_options);
$pdf->ezTable($item,'' ,'' ,$options);
$pdf->ezSetDy(-20); Enjoy,
Bookmarks