[Support request] Change the placeholder for the search widget

Home Forums Support [Support request] Change the placeholder for the search widget

Home Forums Support Change the placeholder for the search widget

  • This topic has 3 replies, 2 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1232024
    Hilton

    Hi,

    how can I change the placeholder for the search sidebar widget from “Pesquisar …” to “Buscar …”?

    Thanks

    #1232362
    David
    Staff
    Customer Support

    Hi there,

    try adding this PHP Snippet to your site:

    function db_search_form_placeholder( $html ) {
    
            $html = str_replace( 'placeholder="Pesquisar ', 'placeholder="Buscar ', $html );
    
            return $html;
    }
    add_filter( 'get_search_form', 'db_search_form_placeholder' );

    https://docs.generatepress.com/article/adding-php/

    #1232514
    Hilton

    Hi David,

    Perfect! Thanks

    #1232523
    David
    Staff
    Customer Support

    You’re welcome

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.