Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Shopping cart box


JasonBChen

Recommended Posts

Posted

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

Posted

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);

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...