Skip Navigation

[Resolved] Redirect to page after form submission not working after update

This support ticket is created 6 years, 12 months ago. 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.

No supporters are available to work today on Toolset forum. Feel free to create tickets and we will handle it as soon as we are online. Thank you for your understanding.

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)

This topic contains 2 replies, has 2 voices.

Last updated by diyanK 6 years, 11 months ago.

Assisted by: Nigel.

Author
Posts
#592322

Hi guys,

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

Try here hidden link

#592399

Nigel
Supporter

Languages: English (English ) Spanish (Español )

Timezone: 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);
}
}