We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Forum search

Topic location: Support » General Questions
dave Leader
dave Feb 4 '14
… but not in the forum. So here is what you can do rather than change browsers. in your url just put: http://www.oxwall.org/forum/search?&q=searchterm replace searchterm with the word or phrase you are looking for.. More
Topic location: Support » General Questions
Jamie Pat
Jamie Pat Jul 17 '23
…   const location = useLocation();  const history = useHistory();  const queryParams = new URLSearchParams(location.search);  const searchTerm = queryParams.get('q');  const handleSearch = (searchTerm) => {    history.push(`/search?q=${searchTerm}`);  };   return … More