Table Of Contents
Description
This hook can be used to change the text of the title of the edit buttons. The title is the text that shows as a tooltip when hovering the button with the mouse.
Parameters
editText| The current edit text
formId | Int
pageNumber | Int
Return
String. Return the text to output
Usage
The below code can be used to change the title of the buttons
Copy the below code to a HTML field inside your form or use the Code chest plugin
<script type="text/javascript">
if ( typeof gform !== "undefined" ) {
gform.addFilter('gotrls_summary_page_edit_text_title',function(editText, formId, pageNumber){
return 'Edit this step'; // Example text to show. Change this.
});
}
</script>
