Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #154115

    Zeshan
    Member

    You’re welcome! 🙂

    #177615

    webgirlliz1
    Participant
    This reply has been marked as private.
    #177628

    webgirlliz1
    Participant
    This reply has been marked as private.
    #177661

    Christopher
    Moderator

    Hi there,

    Please check this article :https://theme.co/x/member/kb/translation/

    Hope it helps.

    #177704

    webgirlliz1
    Participant
    This reply has been marked as private.
    #177818

    Zeshan
    Member

    Hi there,

    Thanks for posting in!

    In order to replace search text from the input field, you can use following code under Custom > JavaScript in the Customizer:

    jQuery(document).ready(function($) {
      $('input[placeholder="Search"], input[placeholder="search"]').attr('placeholder', 'your-custom-search-text');
    });
    

    Replace your-custom-search-text with your own text.

    Thanks!