Resolved
Reported for: WPForms Multilingual 0.3.2
Resolved in: WPForms 0.3.4
Overview of the issue
When using WPForms and WPForms Multilingual with Multiple Options Selection and dynamic options in forms, the email notifications display the post type ID instead of its name.
Workaround
Please, make sure to have a full backup of your site before proceeding.
- Open the /wp-content/plugins/wpml-wpforms/classes/Hooks/WpForms/Notifications.php file.
- Look for line 166.
- Just before this line:
switch ( $field['type'] ) {
Add:
if (!empty($field['dynamic'])) { return $field['value']; }