X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Changing the number of items in mini cart to the actual # of items in minicart (https://forum.x-cart.com/showthread.php?t=29370)

info@dustinframpton.com 11-15-2008 04:22 AM

Re: Changing the number of items in mini cart to the actual # of items in minicart
 
I tried this but it doesnt work for me....i get an error " Parse error: syntax error, unexpected $end in /home/trendytt/public_html/minicart.php on line 65"

my gift certifictes module is disabled.....any ideas?

Quote:

if ( !defined('XCART_START') ) { header("Location: home.php"); die("Access denied"); }

x_session_register ("cart");

$MINICART["total_cost"] = price_format(0);
$MINICART["total_items"] = 0;

if (!empty($cart)) {

if (!empty($cart["total_cost"])) {
if (!empty($active_modules["Fast_Lane_Checkout"]))
$MINICART["total_cost"] = $cart["display_subtotal"];
else
$MINICART["total_cost"] = $cart["total_cost"];
}

$MINICART["total_items"] = 0;

if (!empty($cart["products"]) and is_array($cart["products"])) {
foreach ($cart["products"] as $_tmp)
$MINICART["total_items"] += $_tmp["amount"];
}
if (!empty($cart["giftcerts"]) and is_array($cart["giftcerts"]))
$MINICART["total_items"] +=$cart["giftcerts"];

$smarty->assign("minicart_total_cost", $MINICART["total_cost"]);
$smarty->assign("minicart_total_items", $MINICART["total_items"]);
?>


pairodimes 07-13-2009 04:44 PM

Re: Changing the number of items in mini cart to the actual # of items in minicart
 
Seems to work in 4.2.x as well

kgoel 07-17-2010 09:49 AM

Re: Changing the number of items in mini cart to the actual # of items in minicart
 
I have problem in using 4.3.1 version. It does not change the item number and total unless I refresh the page. This is teh case for all browsers


All times are GMT -8. The time now is 07:53 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.