Remove Ubercart 'Powered By:' link in site $footer_message
If your client insists you remove the link at the bottom of their site, you can do so with this code.
Snippet:
Login/Register to Comment this Snippet<?php
//in template.php:
#remove powered by..
function yourthemenamehere_uc_store_footer($message) { unset($message);}
?>