This is a short code snippet to programmatically show number of items in your Drupal Commerce shopping cart block.
You can use this code anywhere, be it in your custom module or theme.
<?php
global $user;
$quantity = 0;
$order = commerce_cart_order_load($user->uid);