Hi! I’ve used these snippet code that I got from the github/hivepress but it seems that it’s not working. please help me.
add_filter(
'hivepress/v1/forms/user_register',
function( $form ) {
if ( ! isset( $form['redirect'] ) ) {
$form['redirect'] = 'https://booknow.ph/index.php/kyc-verification/' ;
}
return $form;
},
1000
);