Trying to add a new cart block to the header within local.xml this is what i have
<default>
<reference name="header">
<block type="checkout/cart_sidebar" name="cart_topbar" as="topCart" template="checkout/cart/top-cart.phtml"/>
</reference>
</default>
Then with in the header i call it with <?php echo $this->getChildHtml('topCart')?> however it shows nothing.
If i try changing the type to type="core/template" then the template will show the content. So this leads me to think i'm missing something specific to the checkout/cart_sidebar type?
The top-cart.phtml file simple contains a single text line to eliminate anything within that.