0

我想更改我的 Ubercart 产品的模板。更详细地说,我想在每个价格前添加标签“来自...”。但我找不到模板来做这件事。

我也在使用主题开发者模块,这就是我得到的:

zen_uc_product_price < phptemplate_uc_product_price < theme_uc_product_price

但我找不到这样的文件。

谢谢

4

2 回答 2

0

要为价格添加前缀或后缀,您可以转到 /admin/store/settings/store/edit/format

于 2010-07-10T14:49:13.040 回答
0

您还可以创建一个 node-product.tpl.php 文件,如果是这样,这是获取价格的方法:

 <?php
    $context = array(
      'type' => 'product',
      'revision' => 'altered', // using altered to get the bare price with no themeing
      'field' => 'sell_price',
      'subject' => array('node' => $node)
    );
    $dp = uc_price($node->sell_price, $context);
    $context['field'] = 'list_price';
    $lp = uc_price($node->list_price, $context);
    ?>


  <div class="price clear-block <?php if($dp != $lp) print 'discounted'; ?>">
    <?php print 'From: ' . $node->content['display_price']['#value']; ?>
    <?php //print $node->content['list_price']['#value']; ?>
  </div>

这变得比它应该的多一点:使用:content['display_price']['#value']; ?>

除非您想以折扣价为主题:-)

刚刚从我的一个项目中复制出来。

Last: you can probably use theme_uc_product_price: you add a function in template.php (Pasting in default implementation from uc_product.module

function zen_uc_product_price($price, $context, $options = array()) {
  $output = '<div class="product-info '. implode(' ', (array)$context['class']) .'">';
  $output .= uc_price($price, $context, $options);
  $output .= '</div>';

  return $output;
}

Inspect the $context variable for when to add the "From" part.

于 2010-07-11T09:38:46.287 回答