WPML
Status
Resolved
Reported for
WPForms Multilingual 0.3.2
Resolved in
WPForms 0.3.4
Related plugin/theme
WPForms
Topic tags
Compatibility

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.


  1. Open the /wp-content/plugins/wpml-wpforms/classes/Hooks/WpForms/Notifications.php file.

  2. Look for line 166.

  3. Just before this line:
    			switch ( $field['type'] ) {

    Add:
    			if (!empty($field['dynamic'])) {
    				return $field['value'];
    			}

All known issues →