Go to WooComemrce >> Settings >> Advanced:
if you want to in Tour Detail page: When you click Booking button, the system will redirect to Checkout page.
Please add bellow code to functions.php file in child theme
Last updated 1 year ago
add_filter('woocommerce_add_to_cart_redirect', 'skip_cart_go_checkout'); function skip_cart_go_checkout() { return wc_get_checkout_url(); }