SamS1 Posted December 13, 2019 Share Posted December 13, 2019 (edited) Hi everyone, Is it possible to get the domain search and transfer shown in the attached image on to one of our WordPress pages? This one is perfect since it passes the input to the search or transfer fields. Thanks Update: I got the integration code for 'domain ordering' integration from Whmcs and the 'search' button works ok. How can i add the transfer button like above and have it pass the info also. Thanks Integration code now: <form action="/cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="20" /> <input type="submit" value="SEARCH" /> </form> Edited December 13, 2019 by SamS1 0 Quote Link to comment Share on other sites More sharing options...
SamS1 Posted December 13, 2019 Author Share Posted December 13, 2019 Well there we go again 😉 All sorted. Just needs some styling but got it done. 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted December 14, 2019 Share Posted December 14, 2019 11 hours ago, SamS1 said: Update: I got the integration code for 'domain ordering' integration from Whmcs and the 'search' button works ok. How can i add the transfer button like above and have it pass the info also. if you're going to use the integration code, it would be along the lines of... <form action="cart.php?a=add&domain=register" method="post"> Find your Domain: <input type="text" name="query" size="20" /> <input class="btn btn-success btn-sm" type="submit" value="Search" /> <input class="btn btn-info btn-sm" type="submit" formaction="cart.php?a=add&domain=transfer" value="Transfer"> </form> depending on the relative location of the page where you are outputting this form, you might need to use the full URL to both the cart form links. 10 hours ago, SamS1 said: Well there we go again 😉 All sorted. Just needs some styling but got it done. then it would have been useful for others to share your solution! 🙄 1 Quote Link to comment 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.