WordPress – Woocommerce Add to Cart redirect external url
Am I doing something wrong using the below code to have the function of Redirection to an external / third party URL when Add to Cart on WooCommerce site? add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect', 10, 2 ); function custom_add_to_cart_redirect( $redirect_url) { $redirect_url…