Jump to content

Ayuda en el registro del cliente


olevipes

Recommended Posts

Hola! Hay alguna manera de que cuando el cliente (ya registrado) al entrar y introducir el e-mail y contraseña haga clic en el botón de identificación vaya a la pagina principal y no a la pagina de "mi cuenta", gracias por la ayuda un saludo

Link to comment
Share on other sites

Tendrías que probar a cambiar el redireccionamiento que hace tanto my-account.php como order.php, así se hará tanto si el cliente se identifica cuando está comprando o antes.

Cambiar en my-account.php

if (!$cookie->isLogged())
   Tools::redirect('authentication.php?back=my-account.php');



Por

if (!$cookie->isLogged())
   Tools::redirect('authentication.php?back=index.php');



Y en order.php

if (!$cookie->isLogged() AND in_array($step, array(1, 2, 3)))
   Tools::redirect('authentication.php?back=order.php?step='.$step);



Por

if (!$cookie->isLogged() AND in_array($step, array(1, 2, 3)))
   Tools::redirect('authentication.php?back=index.php);



Esto es lo que se me ha ocurrido a bote pronto, no sé si funcionará correctamente. Saludos

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...