Quote Originally Posted by saftek View Post
We have resolved the email problem by making all emails html. BUT: we have the following problems. We have merged all pages into existing pages.

1) calendar isn't showing up on the checkout page.
2) /yourtemplate/templates/tpl_checkout_confirmation_default.php - line 187 - this bit of code

---- . (is_array($payment_modules->modules) ? $payment_modules->process_form_params() : '') ----

breaks the final checkout page and results in error

-----Fatal error: Call to undefined method payment:rocess_form_params() in /home/saftek/public_html/shop/includes/templates/custom/templates/tpl_checkout_confirmation_default.php on line 187 ----

Any clues on where to go from here would be appreciated.
Yeah, that undefined method is something that was anticipated to make it into ZC 1.5.5; however, was pushed out to ZC 1.6.0 which wasn't "realized" until well after the plugin was released. That line can be restored to what is provided in a default ZC store as provided by the likes of includes/templates/template_default/templates/tpl_checkout_confirmation_default.php. It was incorporated to provide support for paypal InContext. The alternative would be to add an applicable function to includes/classes/payment.php like shown in the v1.6.0 version of the same file. Or like pretty much any of the functions in that file.