agent_kidd Posted February 14 Share Posted February 14 Hi, just found this forum, maybe someone can help here. Novice question here 🙂 I have a 3 differents search engine on my website. I have add a form on the header with the code provide by searchwp. this code is supposed to redirect the results of the search on my result page (page id: 16599). but the result is send on a 404 page. here is the form: <div class="search-box">    <form role="search" method="get" class="search-form" action="<?php echo get_permalink( 16599 ); ?>">       <label>          <span class="screen-reader-text">Search for:</span>          <input type="search" class="search-field" placeholder="Search …" value="" name="swpquery" title="Search for:">       </label>       <input type="submit" class="search-submit" value="Search">    </form> </div> Is anyone have an idea how i can achieve this?  Thanks a lot Quote Link to comment https://forums.phpfreaks.com/topic/318024-wordpress-search-engine-searchwp/ Share on other sites More sharing options...
requinix Posted February 14 Share Posted February 14 Look at the HTML as it appears in your browser. Specifically, the action of that form. Is the URL correct? Quote Link to comment https://forums.phpfreaks.com/topic/318024-wordpress-search-engine-searchwp/#findComment-1615503 Share on other sites More sharing options...
agent_kidd Posted February 14 Author Share Posted February 14 3 hours ago, agent_kidd said: Hi, in that form i have entered the id number, did i have to enter whole the url? action="<?php echo get_permalink( URL ); ?>  Quote Link to comment https://forums.phpfreaks.com/topic/318024-wordpress-search-engine-searchwp/#findComment-1615505 Share on other sites More sharing options...
Solution requinix Posted February 14 Solution Share Posted February 14 Go to the page in question, do a View Source in your browser, and find the HTML for your form. What is the value of the form's action? Quote Link to comment https://forums.phpfreaks.com/topic/318024-wordpress-search-engine-searchwp/#findComment-1615507 Share on other sites More sharing options...
agent_kidd Posted February 14 Author Share Posted February 14 Thanks, everything is fine 🙂 Quote Link to comment https://forums.phpfreaks.com/topic/318024-wordpress-search-engine-searchwp/#findComment-1615511 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.