Is there any possible way to disable the confirmation anchor? I've looked into the gform_confirmation_anchor filter in the documentation, but maybe I'm missing the possibility to disable it.
Any help is greatly appreciated!
Is there any possible way to disable the confirmation anchor? I've looked into the gform_confirmation_anchor filter in the documentation, but maybe I'm missing the possibility to disable it.
Any help is greatly appreciated!
Try the following code snippet. Place it in your theme's function.php file
add_filter("gform_confirmation_anchor", create_function("","return false;"));