Viewing 2 replies - 1 through 2 (of 2 total)
  • Yes you can use the scf_filter_contact_form hook, for example:

    function diy_modify_scf($html) {
    	return '<div class="example-div">' . $html . '</div>';
    }
    add_filter('scf_filter_contact_form', 'diy_modify_scf');

    Only instead of this example, you would search and then insert any desired codes.

    Gonna go ahead and close this thread. Feel free to follow-up with any new infos.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Possible to add extra field(s) ?’ is closed to new replies.