/** * Skip cart and go straight to checkout */ // Takes user straight to checkout page when an item is selected from the store. // Changes 'Add to cart' text on buttons. // https://wpbeaches.com/skip-cart-go-straight-to-checkout-page-in-woocommerce/ add_filter('woocommerce_add_to_cart_redirect', 'cc_add_to_cart_redirect'); function cc_add_to_cart_redirect() { global $woocommerce; $checkout_url = wc_get_checkout_url(); return $checkout_url; } //Add 'Buy Now' button text on single product page and other locations add_filter( 'woocommerce_product_single_add_to_cart_text', 'cc_cart_button_text' ); add_filter( 'woocommerce_product_add_to_cart_text', cc_cart_button_text' ); function cc_cart_button_text() { return __('Buy Now', 'woocommerce'); }