Enable Page Query Parameter for Specific Form

Typically, the gpmpn_page query parameter, which allows you to set the default starting page for a form, is only enabled if you are using the page attribute on the

Oops! We could not locate your form.

shortcode. This snippet will enable it by default for a specific form. This is useful if you are displaying the form via a block.

Code

Filename: gpmpn-enable-page-query-param-for-specific-form.php

<?php
/**
 * Gravity Perks // Multi-page Navigation // Enable Page Query Parameter for Specific Form
 * https://gravitywiz.com/documentation/gravity-forms-multi-page-navigation/
 *
 * Typically, the `gpmpn_page` query parameter, which allows you to set the default starting page for a form, is only
 * enabled if you are using the `page` attribute on the [gravityforms] shortcode. This snippet will enable it by default
 * for a specific form. This is useful if you are displaying the form via a block.
 */
// Update "123" to your form ID.
add_filter( 'gpmpn_default_page_123', function() {
	return rgget( 'gpmpn_page' );
} );

Leave a Reply

Your email address will not be published. Required fields are marked *

  • Trouble installing this snippet? See our troubleshooting tips.
  • Need to include code? Create a gist and link to it in your comment.
  • Reporting a bug? Provide a URL where this issue can be recreated.

By commenting, I understand that I may receive emails related to Gravity Wiz and can unsubscribe at any time.