Use a different page template for wordpress e-commerce

Solution:

I found you could target page titles with conditional statements, then used the page title for the checkout page and created this:

<?php
if (is_page( 'Checkout' ) ) {
    if ( have_posts() ) : while ( have_posts() ) : the_post();
        the_content();
        endwhile; else: ?>
    <p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
<?php }   
else{ ?>
    <!--Normal Page Content-->
<?php  } ?>