How can I use 2 or more words as the placeholder?
I’m using [address_geo_autocomplete* pickup-hotel placeholder:Hotel Name]
but it only shows “Hotel” as the placeholder.
-
This reply was modified 6 years, 5 months ago by
Yaniv.
the same issue as above, it will only show the first word it truncates after a space.
Hi Webman Technologies,
Thanks for the awesome plugin. Loving it for my website.
I too am looking for a multiple word string for the placeholder.
Placeholder Idea
The input string I’m looking for is: “📍Enter Your Address”
Text in Contact Form 7
I had a look into the source code, but it’s a bit beyond me — do you have any ideas on how to include a full string similar to the other placeholder fields?
Any help is much appreciate.
~Andy
+1 Looking for placeholder “One two …”
We solved the probleme.
Try placeholder:One_two_three
If you want to use any language try:
1. placeholder:Any_English_word
2. Put codу to functions.php
add_filter( 'wpcf7_form_elements', 'seochild_wpcf7_form_elements' );
function seochild_wpcf7_form_elements( $content ) {
// global $wpcf7_contact_form;
$content = str_replace( 'Any_English_word', 'Any language you want', $content);
return $content;
}
-
This reply was modified 6 years ago by
ishodniki.