• Resolved jameymillerklik

    (@jameymillerklik)


    How can I change the placeholder text from “Enter a Location” to “Address”? Currently I have it set up like this:

    [address_geo_autocomplete* address_geo_autocomplete-314 class:bb-autocomplete placeholder “Address”]

    Any help would be greatly appreciated!

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author webman technologies

    (@oremtech)

    Hello jameymillerklik

    Here is right way to use placeholder [autocomplete* autocomplete-793 id:autocomplete placeholder:Address] or you can use default option to add auto complete field check the attached screenshot
    1) http://prntscr.com/kmf85t
    2) http://prntscr.com/kmf8bk

    Thank you

    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 7 years, 7 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

    • This reply was modified 7 years, 3 months ago by andrewhimself.

    +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 7 years, 2 months ago by ishodniki.
Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Placeholder text’ is closed to new replies.