0

我希望有人可以帮助我解决这个问题。我尝试在 zencart 论坛上发布它,但还没有接受者 - 所以我希望 stackoverflow 能够提供帮助。

在 zencart 中,我发现 product_info 页面可以显示最小、最大和产品数量单位。但是,它“并排”显示它。 点击查看图片。

我想让它显示为列表项,但我不知道如何做到这一点。

我最远的是将其缩小到 tpl_product_info_display.php 并且在其中,我发现它是由

$the_button = zen_get_products_quantity_min_units_display((int)$_GET['products_id'])

先感谢您!

4

1 回答 1

0

对于那些也对此感到疑惑的人……有人设法在zen-cart 论坛上回答了这个问题。

前往包含 -> 函数 - Functions.php(在我的例子中,我在 functions_prices.php 中找到了它)

然后寻找“zen_get_products_quantity_min_units_display”函数。

更改以下内容:

if ($check_min != 1) {
    $the_min_units .= PRODUCTS_QUANTITY_MIN_TEXT_LISTING . ' ' . $check_min;
  }

到:

if ($check_min != 1) {
    $the_min_units .= PRODUCTS_QUANTITY_MIN_TEXT_LISTING . '&nbsp;' . $check_min . '<br />';
  }

添加结尾,只需创建一个新行,摆脱“并排”显示单位。

于 2011-07-19T04:47:51.080 回答