Voeg deze code toe aan functions.php van je thema of Code Snippets.


// add icon GF Forms buttons
add_filter( 'gform_submit_button_1', 'add_paragraph_below_submit', 10, 2 );
function add_paragraph_below_submit( $button, $form ) {
 
    return $button .= "<span>test</span>";
}