我需要用戶看到的網址,以定製頁面:用戶/%用戶/命令/%uc_order如何自定義發票頁面中的Ubercart 3
我試圖用hook_uc_order_pane
function mymodule_uc_order_pane() {
$panes['ship_to_xx'] = array(
'callback' => 'mymodule_uc_order_pane_ship_to_xx',
'title' => t('Just a Test'),
'desc' => t("Description!!"),
'class' => 'pos-left',
'weight' => 99,
'show' => array('view', 'edit', 'invoice', 'customer'),
);
return $panes;
}
和清除所有緩存,但這不起作用。它不顯示任何東西。 你有什麼建議嗎?
我想你會發現http://drupal.stackexchange.com – Strae