I’ve been looking for this over the past few days also and decided to take matters into my own hands!
In the plug in folder go to
modules > text.php (for email input and regular text input)
change line
$html = ‘<input type=”text” name=”‘ . $name . ‘” value=”‘ . esc_attr( $value ) . ‘”‘ . $atts . ‘ />’;
to
$html = ‘<input type=”text” name=”‘ . $name . ‘” placeholder=”‘ . esc_attr( $value ) . ‘”‘ . $atts . ‘ />’;
For Placeholders on Text area
modules > textarea.php
line 76 add
if ( $class_att )
$atts .= ‘ placeholder=”‘ . trim( $value ) . ‘”‘;
and on line 95 change this:
$html = ‘<textarea name=”‘ . $name . ‘”‘ . $atts . ‘>’ . esc_textarea( $value ) . ‘</textarea>’;
to this
$html = ‘<textarea name=”‘ . $name . ‘”‘ . $atts . ‘></textarea>’;
It will make every “value” you enter in the backend a placeholder so if you solely just need placeholder it works a dream! must be careful not to update the plug in though so isn’t long term ideal!
Hope that helps some people I’ve been searching for a solution for days!