I'm using Ubercart and I'm attempting to override the following theme function theme_address_pane()
which is in uc_cart_checkout_pane.inc
. So I wrote the following function in template.php
:
function mytheme_address_pane($form) {
return "asdf";
}
However, it isn't replacing anything with "asdf". What could I be doing wrong?
Edit: The devel
module reports the function being called as theme_address_pane
, not my overridden one.