I figured out what the issue is.
On this page:
includes/templates/template_default/templates/tpl_checkout_default.php
On line 36:
PHP Code:
<?php include(DIR_WS_TEMPLATE . 'templates/tpl_checkout_stacked.php'); ?>
Basically, that call wasn't pointing to the correct template that I'm using. By default it was trying to call the 'classic' template path.
So, I changed that line to this:
PHP Code:
<?php include($template->get_template_dir('tpl_checkout_stacked.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_checkout_stacked.php'); ?>
And it loaded the template.
Hopefully the rest of the process is smooth!
Bookmarks