A PHP snippet for Jetpack Subscriptions.
/**
* Redirect all successful subscription submissions to a 'thank-you' page.
*/
function flstudio_custom_sub_redirect_page( $result ) {
if ( 'success' === $result ) {
$thanks_page = 'thank-you';
wp_safe_redirect( $thanks_page );
exit;
}
}
add_action( 'jetpack_subscriptions_form_submission', 'flstudio_custom_sub_redirect_page' );