• Hi! Thanks for creating this tool!
    I have over 10 plugins installed as I have built a multivendor marketplace. Going into each plugin to search for a string is very time consuming and confusing. Is there a way to search for a string and see in what plugins it exists? Like when you search in your file explorer “documents folder” and your results show you all the files in that folder that have that specific text.

Viewing 1 replies (of 1 total)
  • Plugin Author Tim W

    (@timwhitlock)

    This plugin doesn’t currently offer this feature. It is on the todo list.

    A simple command line search of all PHP files will do what you need very quickly indeed. e.g.

    find wp-content/plugins -name "*.php" | xargs grep -l 'This exact text'

    This will show you what files the text is contained in. The path of which will tell you which plugin to translate.

Viewing 1 replies (of 1 total)
  • The topic ‘Is there an option to search fall plugins at the same time?’ is closed to new replies.