gform_print_scripts

gform_print_scripts

DescriptionUsageParametersExamples1. Print custom scriptPlacementSinceSource Code

Description
The gform_print_scripts action hook is executed just after the scripts are printed to the page for the form widget or when a form embed is processed in a custom location using GFCommon::gform_do_shortcode().
Usage
1add_action( 'gform_print_scripts', 'your_function_name', 10, 2 );
You can also specify this per form by adding the form id after the hook name.
1add_action( 'gform_print_scripts_6', 'your_function_name', 10, 2 );

Parameters

$form Form Object
The current form object.

$is_ajax bool
Indicates if the form is configured to be submitted via AJAX.

Examples
1. Print custom script
This example prints a custom script for all AJAX enabled forms.
1234567add_action( 'gform_print_scripts', 'print_custom_script', 10, 2 );function print_custom_script( $form, $is_ajax ) {    if ( $is_ajax ) {        wp_enqueue_script( 'custom_script', 'path/file.js' );        wp_print_scripts( 'custom_script' );    }}
Placement
This code should be placed in the functions.php file of your active theme or a custom functions plugin.
Since
This filter was added in Gravity Forms v2.5.
Source Code
This filter is located in GFFormDisplay::print_form_scripts() in form_display.php.

發表回覆

您的郵箱地址不會被公開。 必填項已用 * 標註