Saltar navegación

[Resuelto] After submitting user form – cannot call page

This support ticket is created hace 2 años, 9 meses. There's a good chance that you are reading advice that it now obsolete.

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

Este tema contiene 5 respuestas, tiene 2 mensajes.

Última actualización por a.R hace 2 años, 9 meses.

Asistido por: Minesh.

Autor
Mensajes
#2333001

a.R
problem a.R user form.jpg

One cannot choose the post type PAGE here.

How change that?

Is it possible to call enlace oculto after submitting?

Thank you 🙂

#2333317

Minesh
Supporter

Idiomas: Inglés (English )

Zona horaria: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

It seems you want to redirect the user after successful form submission to the single profile page - is this correct?
- If yes, I see you are using addon buddypress plugins.

Can you please share information where on what page you added the user form and also confirm to what profile page you want to redirect the user.

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I have set the next reply to private which means only you and I have access to it.

#2333393

Minesh
Supporter

Idiomas: Inglés (English )

Zona horaria: Asia/Kolkata (GMT+05:30)

As I understand - the form is to edit the current loggedin profile: enlace oculto
- Correct?

#2333585

a.R

right.

#2333641

Minesh
Supporter

Idiomas: Inglés (English )

Zona horaria: Asia/Kolkata (GMT+05:30)

I've added the following Toolset form's redirection hook to "Custom Code" section offered by Toolset:
=> enlace oculto

add_filter('cred_success_redirect', 'func_redirect_edit_profile_submit',10,3);
function func_redirect_edit_profile_submit($url, $post_id, $form_data){
    if ($form_data['id']==4035){
      global $current_user;
      $url = bp_core_get_user_domain($current_user->ID)."profile";
      
    }     
  
    return $url;
}

Can you please check now: enlace oculto
- Once you submit the form it should be redirected on user profile page.

#2337127

a.R

Looks good, thank you 🙂