我正在尝试在Gravity Forms页面/表单编辑器中单击下面的“ Update”按钮时添加的功能,以重定向到父页面的编辑器视图。
我想在Gravity Forms编辑器中单击“更新”按钮,然后将其重定向到常规父页面编辑器。 (即下面)
通过Gravity Forms插件源的相关代码。
<?php
$save_button_text = __( 'Update', 'gravityforms' );
$save_button = '<input type="button" class="button button-large button-primary update-form" value="' . $save_button_text . '" onclick="SaveForm();" onkeypress="SaveForm();" />';
/**
* A filter to allow you to modify the Form Save button
*
* @param string $save_button The Form Save button HTML
*/
$save_button = apply_filters( 'gform_save_form_button', $save_button );
echo $save_button;