lloydcodrington Posted September 23, 2010 Share Posted September 23, 2010 Hi All, Is there a way to get the new Ajax order form to show domains registration. Currently when I use the Ajax order I only see the other products and not domain registration which I use to get with any of the other order templates. Any ideas please? Thanks. 0 Quote Link to comment Share on other sites More sharing options...
WHMCS Support Manager WHMCS John Posted September 28, 2010 WHMCS Support Manager Share Posted September 28, 2010 No, the ajax order form is not designed for domain-only orders yet. You'd need to continue using the regular order form for that. 0 Quote Link to comment Share on other sites More sharing options...
GORF Posted October 24, 2010 Share Posted October 24, 2010 No, the ajax order form is not designed for domain-only orders yet. You'd need to continue using the regular order form for that. Bummer, I was looking to use this on a new project right now. 0 Quote Link to comment Share on other sites More sharing options...
lloydcodrington Posted October 24, 2010 Author Share Posted October 24, 2010 No, the ajax order form is not designed for domain-only orders yet. You'd need to continue using the regular order form for that. Hi John, Thanks for the reply but was wondering if there were any plans to have this incorporated? If so is there any timeline build wise? Thanks. 0 Quote Link to comment Share on other sites More sharing options...
jaatendi Posted November 6, 2010 Share Posted November 6, 2010 Yeah, my domain registration is looking a little shabby next to my slick new Ajax hosting order form . 0 Quote Link to comment Share on other sites More sharing options...
Snowman Posted November 15, 2010 Share Posted November 15, 2010 No, the ajax order form is not designed for domain-only orders yet. You'd need to continue using the regular order form for that. is this planned to be incorporated? it would be nice to have a seamless front end in ajax 0 Quote Link to comment Share on other sites More sharing options...
GoRhY Posted January 4, 2011 Share Posted January 4, 2011 You can edit the master file and modify the line: <tr class="rowcolor1"><td>{foreach from=$groups item=group}<input type="radio" name="gid" value="{$group.gid}" id="gid{$group.gid}" onclick="loadproducts('{$group.gid}')" /> <label for="gid{$group.gid}">{$group.name}</label> {/foreach} </td></tr> to <tr class="rowcolor1"><td>{foreach from=$groups item=group}<input type="radio" name="gid" value="{$group.gid}" id="gid{$group.gid}" onclick="loadproducts('{$group.gid}')" /> <label for="gid{$group.gid}">{$group.name}</label> {/foreach} <input type="radio" name="gid" value="dominios" id="dominios" onclick="carga_dominios()" /> <label for="dominios">Sólo dominio</label> </td></tr> Then, you should create the carga_dominios function in some existing js file or in a new one function carga_dominios() { window.location = "https://DOMAIN/cart.php?a=add&domain=register" } That's the best solution I've found to use the ajax form and redirect the users to the old one only for domains 0 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.