代码之家  ›  专栏  ›  技术社区  ›  Lieutenant Dan

链接到父页编辑器视图,在重力表单编辑器“更新”后

  •  0
  • Lieutenant Dan  · 技术社区  · 6 年前

    我正在尝试添加的功能,当点击下面的重力表单页面/表单编辑器中的“更新”按钮时。重定向到父页的编辑器视图。

    enter image description here

    我想点击重力表单编辑器中的“更新”按钮,然后被重定向到常规父页面编辑器。 (即下文)

    enter image description here

    相关代码通过重力表单插件源码。

     <?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 回复  |  直到 6 年前