This topic has 3 replies, 2 voices, and was last updated 9 years ago ago by Eva Kemp
Hello,
Id like to have a CHECKOUT button in the CART page.
How can i do it?
Thank You
After a quick check, I found something missing on woocommerce/cart.php (line 121)
i changed
<div class="actions">
<input type="submit" class="btn gray big" name="update_cart" value="<?php _e( 'Update Cart', 'woocommerce' ); ?>" />
<?php wp_nonce_field( 'woocommerce-cart' ); ?>
</div>
by
<div class="actions">
<input type="submit" class="btn gray big" name="update_cart" value="<?php _e( 'Update Cart', 'woocommerce' ); ?>" /> <input type="submit" class="btn black big" name="proceed" value="<?php _e( 'Proceed to Checkout', 'woocommerce' ); ?>" />
<?php wp_nonce_field( 'woocommerce-cart' ); ?>
</div>
and now i ve got te Checkout button in my Cart Page
Hello,
Is your issue resolved?
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up