Find tpl_shopping_cart.php in includes/templates/YOUR_TEMPLATE/sideboxes/
Look for line 46 where this code appears:
Code:
if ($_SESSION['cart']->count_contents() > 0) {
$content .= '<hr />';
$content .= '<div class="cartBoxTotal">....
In that block you can input anything else you like. In my site I put some little icons for viewing the cart and going to checkout. The code for the checkout page is:
Code:
<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '" alt="Checkout" title="Checkout">Checkout</a>
You could also just hard code it too by copying and pasting the URL that displays when you go to checkout...
Here's a great tip for the future... Use the Developers Tool Kit in the ZC admin. It's works wonders for this kind fo stuff. That combined with viewing the source to find what your looking for (classes or id's that you can search for using the Dev Tool Kit).
Good luck!
Bookmarks