View Single Post
  #52  
Old 04-09-2007, 04:48 PM
 
Pinestream Pinestream is offline
 

Advanced Member
  
Join Date: Jul 2006
Posts: 30
 

Default Re: Improved minicart display

My first X-Cart contribution.....

People have been asking how to return to the same page, not the cart, after removing a product from the min-cart. Simple -- find this code section in cart.php:

# DELETE PRODUCT
if ($mode == "delete" && !empty($productindex)) {
...
...
...
$cart = func_array_merge($cart, func_calculate($cart, $products, $login, $current_area, 0));

--> ADD THIS:
$return_url = $_SERVER['HTTP_REFERER'];
func_header_location($return_url);
}

That's it. Just remember -- it would be wise to add some input validation/filtering on $_SERVER['HTTP_REFERER'].
__________________
Pinestream
X-Cart 4.1.8
Also litecommerce 2.2
Reply With Quote