Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Markus Wiesenhofer

    (@markusfroehlich)

    Hello swaranan,
    you can do this with the “wpcf7_your_tag_name_placeholder” filter like:

    
    add_filter('wpcf7_your_tag_name_placeholder', 'change_wpcf7_your_tag_name_placeholder', 10, 3);
    
    function change_wpcf7_your_tag_name_placeholder($placeholder, $post_type, $tag)
    {
    return 'Hello';
    }

    Best regards
    Markus

    Thread Starter swaranan

    (@swaranan)

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change placeholder text for dropdown’ is closed to new replies.