Redirection to a thank you page Woocommerce base on product category
Here is an example function that you can add to your WordPress theme’s functions.php file to redirect users to a thank you page after a successful purchase in WooCommerce, where the thank you page is different depending on the product category: function custom_woo_thank_you_redirect( $order_id ) { $order = wc_get_order( $order_id ); $items = $order->get_items(); foreach … Read More
