Contact Form 7 placeholder for select menu
Finally got the solution for adding placeholder/watermark in contact form7. This code is working and replacing the “—” blank value from contact form7 select menu. Add this code to your functions.php and change the text “Please select…” to your own text.
function my_wpcf7_form_elements($html) { $text = 'Please select...'; $html = str_replace('<option value="">---</option>', '<option value="">' . $text . '</option>', $html); return $html; } add_filter('wpcf7_form_elements', 'my_wpcf7_form_elements');
If you liked our work and effort then please consider to make a kind donation.
I have been looking for Contact Form 7 placeholder for drop down select menu for last 2 months. Thanks Creative tweets