如何在ubercart中设置主题购物车

How to theme shopping cart in ubercart

我使用 drupal 7 和 ubercart 3。如何为购物车页面设置主题。我曾经创建过页面--cart.tpl.php 但我不知道如何获取购物车的项目来为其设置主题

位于 /cart 的购物车是一种可以覆盖主题的表单。在您的 template.php 中定义以下函数:

function yourtheme_uc_cart_view_form(&$variables) {
  //$form contains the UC cart form object
  $form = &$variables['form'];

  //$form['items'] will contain a table object with the cart items
  $output = '<p>some test output.</p>';
  $output .= drupal_render_children($form);
  return $output
}

您可以参考 uc_cart 的 theme_uc_cart_view_form 作为主题覆盖的参考。