schlauch-profi.de Posted June 7, 2007 Report Share Posted June 7, 2007 Hi, wenn ein Besucher seinen Warenkorb voll gepackt hat und zur Kasse möchte muss er sich einloggen. Nachdem er sich eingeloggt hat landet er wieder auf der Seite mit dem Warenkorb. Kann man es umstellen, sodass der Kunde nach dem einloggen direkt beim nächsten Bestellschritt landet - was meiner Meinung nach Sinn machen würde? Gruß Lars Link to comment Share on other sites More sharing options...
supervisior Posted June 7, 2007 Report Share Posted June 7, 2007 schau mal in der login.php. das nimmt Einfluss darauf, was nach dem Login angezeigt wird. if ($_SESSION['cart']->count_contents() > 0) { xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); } else { xtc_redirect(xtc_href_link(FILENAME_DEFAULT));[/PHP] Link to comment Share on other sites More sharing options...
schlauch-profi.de Posted June 7, 2007 Author Report Share Posted June 7, 2007 danke für den Tipp, es funktioniert! Link to comment Share on other sites More sharing options...
isbn1 Posted April 22, 2008 Report Share Posted April 22, 2008 schau mal in der login.php. das nimmt Einfluss darauf, was nach dem Login angezeigt wird. if ($_SESSION['cart']->count_contents() > 0) { xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL')); } else { xtc_redirect(xtc_href_link(FILENAME_DEFAULT));[/PHP] Hallo Supervisior, vielleicht kannst Du nem Deppen wie mir helfen! Was muss ich da genau machen? Will, dass die gleiche Seite angezeigt wird, wie vor dem Einloggen? Link to comment Share on other sites More sharing options...
isbn1 Posted April 23, 2008 Report Share Posted April 23, 2008 okay, gelöst: habe $http_referrer = getenv( "HTTP_REFERER" ); eingebaut und leite dann nach dem login auf http_referer um. Scheint zu funktionieren Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.