Jump to content

demande aide


Recommended Posts

Bonjour,

 

Je suis sur PS 1.2.5. Fichier order.php (racine).

 

Ligne 85 il y a :

 

/* 4 steps to the order */
switch (intval($step))
{
 case 1:
  displayAddress();
  break;
 case 2:
  if(Tools::isSubmit('processAddress'))
   processAddress();
  autoStep(2);
  displayCarrier();
  break;
 case 3:
  if(Tools::isSubmit('processCarrier'))
   processCarrier();
  autoStep(3);
  checkFreeOrder();
  displayPayment();
  break;
 default:
  $smarty->assign('errors', $errors);
  displaySummary();
  break;
}

 

cela permet de gérer les différents step du tunnel !

 

Bonne journée

Link to comment
Share on other sites

  • 3 weeks later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...