
Originally Posted by
ahall13
their instructions want me to put their code in includes/templates/cherry_zen/templates/checkout success/tpl_footer.php
Correct.

Originally Posted by
ahall13
My template does not have this directory so I assume to create it I would have to tell the tpl_checkout_success_default to call this file if I manually create it.
Incorrect assumption.
Simply create the folder specified, and copy the file specified from the "common" folder of your template, into that folder.
ie: in your case, since you're using "cherry_zen", you would copy /includes/templates/cherry_zen/common/tpl_footer.php to /includes/templates/cherry_zen/checkout_success/tpl_footer.php and make your edits in that file.

Originally Posted by
ahall13
It looks to me that they are using variables that are not defined or referenced in my php file.
Perhaps, although what they've given you appears to be largely correct.
The correct variables to use in Zen Cart v1.3.8a are:
Code:
$order_summary['order_number'];
$order_summary['order_subtotal'];
$order_summary['credits_applied'];
$order_summary['order_total'];
$order_summary['commissionable_order'];
$order_summary['commissionable_order_formatted'];
$order_summary['coupon_code'];