Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

who can help me ? help!!!!


8585885

Recommended Posts

Posted
function tep_get_qty($products_id) {

global $cart;

if (strpos($products_id,'{')) {

$act_id=substr($products_id,0,strpos($products_id,'{'));

} else {

$act_id=$products_id;

}

return $cart->get_quantity($act_id);

}

I want get product' quantity from shopping cart and display quantity in product_info.php

that I try to use this function .

but ......

who can help me!!!!

thand you !!!!!!!!!

Posted
I want get product' quantity from shopping cart and display quantity in product_info.php

that I try to use this function .

but ......

who can help me!!!!

thand you !!!!!!!!!

 

If you mean to show your stock inside the product info page place the following somewhere appropriate

	   <SPAN class="smallText"><?php echo '(' . STOCK_AVAILABLE . ' ' . tep_get_products_stock($product_info['products_id']) . ')'; ?></SPAN>

Archived

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

×
×
  • Create New...