Missing placeholder new registration
-
The placeholder in the description field is missing for new registrations because of extra blank characters in the textarea field. A backspace will display the placeholder.
Remove these extra characters by combining two php code blocks in /templates/form-fields/textarea-field.php lines 30/31 to:
><?php echo isset( $data->value ) ? esc_textarea( html_entity_decode( $data->value ) ) : ''; if ( ! empty( $data->read_only ) ) echo 'readonly'; ?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Missing placeholder new registration’ is closed to new replies.