Could someone please show me how to get started editing the block/form?
I found: theme_uc_cart_block_content() which looks promising but I don't know how/what to rename it to in order to start editing. I've modified forms before and should be able to customize the block. I think I just need a head start.
I've opened my block.tpl and added:
<?php if ($block->module=='uc_cart' && $block->delta==0): #shopping cart block ?>
<div id="yourcart">
<div class="tl"></div>
<div class="tr"></div>
<div class="i">
<h3 class="ttl"><em>Your Cart</em></h3>
<?php print $block->content ?>
</div>
<div class="bl"></div>
<div class="br"></div>
</div>The block won't use this template. But, thats the layout I'm looking to wrap the Cart Contents in.
I'd also like to modify the layout of the actual cart content table. Changing the '(View Cart)' and '(Checkout)' links if possible.
Finally, a quick question I've been meaning to ask. Why don't peaple use '#' comments in php? I only ever see '//' used in peoples code.
Thanks for your time,
Marc





. So I've to remember each time I update ubercart to renew this part