Quantcast
Channel: WordPress.org Forums » All Posts
Viewing all articles
Browse latest Browse all 119348

bluey80 on "[Plugin: Simple Cart & Buy Now] Simple Show Number Of Items In Cart?"

$
0
0

Oh, it is treating count a string, not an integer. Try:

$cart = $_SESSION['wfcart'];
$count=0;
foreach($cart->items as $item){
    $count+= intval($cart->itemqtys[$item]);
}
echo $count;

Viewing all articles
Browse latest Browse all 119348

Trending Articles