web-dev-qa-db-ja.com

「マイオーダー」ブロックにラインアイテムを追加する

Drupal 7 Ubercart 3を使用しています。モジュールを使用してラインアイテム "ギフトラッピング"を正常に追加しましたが、 "My Order"ブロックにそれを表示して、ユーザーはレビューページではなく、注文の料金をすぐに表示します。他の製品と一緒にカートにラインアイテムを表示することは可能ですか?

1

こちらをご覧ください。これはあなたを助けるかもしれません。 hook_line_item

http://www.ubercart.org/docs/api/hook_line_item

1
niksmac
<?php
function uc_order_line_item() {
  $items[] = array(
    'id' => 'generic',
    'title' => t('Empty Line'),
    'weight' => 2,
    'default' => FALSE,
    'stored' => TRUE,
    'add_list' => TRUE,
    'calculated' => TRUE,
    'callback' => 'uc_line_item_generic',
  );
  return
$items;
}
?>
0
Serey Pun