Jump to content
xt:Commerce Community Forum

Anmeldung Neuer Kunde


spacecube

Recommended Posts

Hi wissende,

vielleicht gabs die frage schon mal, allerdings hab ich mittels suche nix gefunden. Wenn doch bitte link posten.

Frage:

wenn ein Kunde sich neu registriert, wird direkt der Warenkorb ge?ffnet.

1. Ist das richtig?

2. Sollte da nicht irgend ne Seite kommen in der drin steht das die Registration erfolgreich war?

gr?ssle

spacecube

Link to comment
Share on other sites

create_account.php Zeile 320:


   if (!isset($mail_error)) {

     xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL'));

   }

   else {

     echo $mail_error;

   }

  }

 }

Ersetzen durch:

   if (!isset($mail_error)) {

  if (sizeof($_SESSION['navigation']->snapshot) > 0) {

     $origin_href = xtc_href_link($_SESSION['navigation']->snapshot['page'], xtc_array_to_string($_SESSION['navigation']->snapshot['get'], array(xtc_session_name())), $_SESSION['navigation']->snapshot['mode']);

     $_SESSION['navigation']->clear_snapshot();

     xtc_redirect($origin_href);

    } 

 else

 {

     xtc_redirect(xtc_href_link(FILENAME_DEFAULT));

    }


   }

   else {

     echo $mail_error;

   }


  }

 }

PS: Suche geht einzustellen auf mehr als 30 Tage, dann findest auch mehr.

MfG Ren

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...