protected function after_table()
    {
        ?>
	<div class="wpsc-form-actions bottom">
		<?php 
        wpsc_keep_shopping_button();
        ?>
		<?php 
        wpsc_begin_checkout_button();
        ?>
		<?php 
        wpsc_form_hidden('_wp_nonce', wp_create_nonce('wpsc-cart-update'));
        ?>
	</div>
	<?php 
        parent::after_table();
        ?>
</form>
<!-- WP eCommerce Cart Form Ends -->
<?php 
    }
Beispiel #2
0
 */
?>

<div class="wpsc-shopping-cart">

	<?php 
wpsc_user_messages();
?>

	<?php 
if (wpsc_cart_has_items()) {
    ?>
		<?php 
    wpsc_cart_item_table();
    ?>
	<?php 
} else {
    ?>
		<p><?php 
    esc_html_e("There is nothing in your cart.", 'wp-e-commerce');
    ?>
</p>
		<p><?php 
    wpsc_keep_shopping_button();
    ?>
</p>
	<?php 
}
?>
</div>