在类别页面上显示产品的可用性

时间:2015-06-30 10:52:17

标签: opencart2.x

我正在使用opencart 2.0,我需要根据数量调整产品的可用性。 我是在产品页面上做到的,但现在我必须在类别页面上显示产品的可用性

1 个答案:

答案 0 :(得分:0)

转到您的类别控制器

catalog->controller->category.php

这里大约没有231号,会有一个名为$data['products']的数组用这段代码替换这个

$data['products'][] = array(
    'product_id'  => $result['product_id'],
    'thumb'       => $image,
    'name'        => $result['name'],
    'description' => utf8_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get('config_product_description_length')) . '..',
    'price'       => $price,
    'special'     => $special,
    'tax'         => $tax,
    'rating'      => $result['rating'],
    'href'        => $this->url->link('product/product', 'path=' . $this->request->get['path'] . '&product_id=' . $result['product_id'] . $url),
    'quantity' => $result['quantity'] // add another key for quantity in this array 
);

在主题的category.tpl文件中,您可以通过产品循环

下的此变量访问数量
<?php echo $product['quantity']; ?>

我希望这会对你有所帮助。:)