Skip Navigation

[Résolu] Redirect to page after form submission not working after update

This support ticket is created Il y a 7 années. 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.

Aucun de nos assistants n'est disponible aujourd'hui sur le forum Jeu d'outils. Veuillez créer un ticket, et nous nous le traiterons dès notre prochaine connexion. Merci de votre compréhension.

Sun Mon Tue Wed Thu Fri Sat
- 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 7:00 – 14:00 -
- 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 15:00 – 16:00 -

Supporter timezone: Europe/London (GMT+00:00)

Ce sujet contient 2 réponses, a 2 voix.

Dernière mise à jour par diyanK Il y a 7 années.

Assisté par: Nigel.

Auteur
Publications
#592322

Hi guys,

I just updated to latest toolset plugins and found out my registration forms are not redirecting after submitting.

Try here lien caché

#592399

Nigel
Supporter

Les langues: Anglais (English ) Espagnol (Español )

Fuseau horaire: Europe/London (GMT+00:00)

Hi there

Were they incremental plugin upgrades or did you skip many versions?

I would need to see how you have this set up to see if I can reproduce it, but first, can you please confirm if the redirects still fail if you disable all non-Toolset plugins and switch to a standard theme such as twentyseventeen?

#593056

Turned out to be a plugin compatibility issue - "Admin Bar & Dashboard Control".

This one hides the admin bar and controls access to dashboard for non admin users, no idea why it was conflicting.

Anyway, I have fixed this thanks to you pushing me back to do my homework first 🙂
I replaced this plugin with "Remove Dashboard Access" plugin and added this to my functions to hide the admin bar:

// Disable Admin Bar for all users but admin
add_action('after_setup_theme', 'remove_admin_bar');
 
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}