重力表格编辑器“更新”后链接到父页面编辑器视图

时间:2019-03-17 21:35:30

标签: php wordpress wordpress-theming gravity-forms-plugin

我正在尝试在Gravity Forms页面/表单编辑器中单击下面的“ Update”按钮时添加的功能,以重定向到父页面的编辑器视图。

enter image description here

我想在Gravity Forms编辑器中单击“更新”按钮,然后将其重定向到常规父页面编辑器。 (即下面)

enter image description here

通过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;

0 个答案:

没有答案