Hello @namazee,
In this case you will need at least the Professional version of the plugin.
I’ll try to describe the process with a hypothetical example.
Assuming the form A includes the fields: fieldname1 and fieldname2, and you want pre-fill the fields: fieldname4 and fieldame9 in the form B with the values of fields in the form A:
– First, enter as the thank you page in the settings of the form A, the URL to the webpage where is inserted the form B.
– Second, into the content of the page where insert the shortcode of the form B, insert the shortcode for results to create the variable that define the default values of the fields in the form B:
[CP_CALCULATED_FIELDS_RESULT]
<SCRIPT>
cpcff_default = { 1 : {} };
cpcff_default[1][ 'fieldname4' ] = '<%fieldname1_value%>';
cpcff_default[1][ 'fieldname9' ] = '<%fieldname2_value%>';
</SCRIPT>
[/CP_CALCULATED_FIELDS_RESULT]
and that’s all.
More information in the following links:
https://cff.dwbooster.com/documentation#populate-form
https://cff.dwbooster.com/documentation#populate-form-b-with-a
Best regards.