Jump to content

darkaz

Retired Forum Member
  • Posts

    8
  • Joined

  • Last visited

Everything posted by darkaz

  1. Hi, I'd prefer NOT to use the cart, but it seems to have magically appeared in 3.60 as the only way to go through the system (moving my template from 3.51 to 3.60 broke it). Can I force it back to order.php or will that break it further down the process? Cheers
  2. This skips the Choose a Package option, rather than the Domain Options
  3. 1. Turn off captcha in the database/admin area. 2. Replicate form on the html page of your choosing 3. Post to domainchecker.php NOTE: Don't think you can reference the list of tld's from any page, so you may have to put those in a select box manually. Haven't played round with it much though.
  4. Have figured out a bit of a workaround, Matt if you have a better way to do it please advise. In domainchecker.tpl change the line mentioned above to <form method="post" action="{if $systemsslurl}{$systemsslurl}/{/if}patchstep2.php"> Then create a new php file named patchstep2.php in the root directory and put the following: <? @session_start(); $_SESSION['frm_domaintype'] = 'register'; $_SESSION['frm_domainsearch'] = $_POST['domainsearch']; $_SESSION['frm_domains'] = array(); foreach ($_POST['domains'] AS $Domain) { $_SESSION['frm_domains'][] = array('domain'=>$Domain); } $_SESSION['frm_fromdomainchecker'] = 1; header("location: order.php?step=2&domainonly=true"); ?> Not particularly the best method, but it seems to work. You may also want to edit the order templates to remove the link to package options.
  5. scrap that - it jumps screens but doesn't function correctly... my bad
  6. I've just been figuring this myself - really depends on how much you want to skip e.g. in domainchecker.tpl replace the line <form method="post" action="{if $systemsslurl}{$systemsslurl}/{/if}order.php?order=domains"> with: <form method="post" action="{if $systemsslurl}{$systemsslurl}/{/if}order.php?step=2&domainonly=true"> this will skip the next screen where you choose packages as far as skipping more of these options - I'm sure more can be done but is not quite so simple... take a look at the code (templates) and work through the process to see what is required for each step hope this is of some help John
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated