Frontend Submit Form input field issues
-
For both the job details and the company details it is showing the actual code for the input field rather than field itself, minus the front part of the input tag.
type="text" class="input-text" name="<?php echo esc_attr( isset( $field['name'] ) ? $field['name'] : $key ); ?>" id="<?php echo esc_attr( $key ); ?>" placeholder="<?php echo esc_attr( $field['placeholder'] ); ?>" value="<?php echo isset( $field['value'] ) ? esc_attr( $field['value'] ) : ''; ?>" maxlength="<?php echo ! empty( $field['maxlength'] ) ? $field['maxlength'] : ''; ?>" <?php if ( ! empty( $field['required'] ) ) echo 'required'; ?> />Above is what displays on the webpage.
I saw a few threads most likely related to this issue saying it’s an issue with the theme but all of the reply links showing the solution are not working.
Viewing 8 replies - 1 through 8 (of 8 total)
Viewing 8 replies - 1 through 8 (of 8 total)
The topic ‘Frontend Submit Form input field issues’ is closed to new replies.