ight, so in a past hack there was a method to add the shipping method and shipping option to the purchase report by adding the following lines to wp-content/plugins/wp-e-commerce/wpsc-theme/functions/wpsc-transaction_results_functions.php
$report = str_replace( '%shipping_method%', $purchase_log['shipping_method'], $report );
$report = str_replace( '%shipping_option%', $purchase_log['shipping_option'], $report );
So I'm testing to see if I can just have the packing slip included in the purchase report by adding the following to the same file
$report = str_replace( '%packing_slip%', 'wpsc_display_invoice', $report );
based on what I see in wp-content/plugins/wp-e-commerce/wpsc-admin/ajax-and-init.php and wp-content/plugins/wp-e-commerce/wpsc-admin/display-sales-logs.php
Any input as to whether I'm on the right track or not would be awesome.
Thanks