JasonBChen Posted February 17, 2006 Posted February 17, 2006 Hello everyone, This is my first post here... :) Does anybody knows how to make the shopping cart box only show the number of items put in there but not all the details (product name, etc.)?? Thanks in advance. Jason
dave111 Posted February 18, 2006 Posted February 18, 2006 Open includes/boxes/shopping_cart.php Add this: $info_box_contents = array(); $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHOPPING_CART) . '">'. $cart->count_contents() .' Items at '. $currencies->format($cart->show_total()) . '</a>'); Just before this: new infoBox($info_box_contents);
Recommended Posts
Archived
This topic is now archived and is closed to further replies.