Archived topic
WooCommerce Cart in Primary Menu - How to change url from cart to checkout?
3 replies · Started by Daniel on April 24, 2018
Viewing posts 1–4 of 4
Hi Generatepress team,
I was wondering if there is any way or custom snippet to change the url that is used for the WooCommerce cart in the primary menu from cart to checkout?
Note:
Besides WooCommerce > Checkout change cart's page to checkout.
Besides force redirect cart to checkout.
Thanks again!
WooCommerce has this filter: woocommerce_get_cart_url
Try this:
add_filter( 'woocommerce_get_cart_url', 'tu_custom_cart_url' );
function tu_custom_cart_url() {
return 'URL TO YOUR CHECKOUT';
}
Thank you Tom. This works! :)
You're welcome :)
This archived topic is closed to new replies.