如何隐藏最新产品模块Opencart中的某些类别?

时间:2016-07-07 19:06:23

标签: opencart opencart-module

所以我有Opencart 1.5.6,我需要隐藏一个类别,以便不显示在最新的产品模块中...如何修复php来做到这一点而不使用任何第三方模块?

我知道它位于catalog\controller\module\latest.php的某处,所以这是我的代码:

    <?php
class ControllerModuleLatest extends Controller {
    protected function index($setting) {
        $this->language->load('module/latest');

        $this->data['heading_title'] = $this->language->get('heading_title');

        $this->data['button_cart'] = $this->language->get('button_cart');

        $this->load->model('catalog/product');

        $this->load->model('tool/image');

        $this->data['products'] = array();

        $data = array(
            'sort'  => 'p.date_added',
            'order' => 'DESC',
            'start' => 0,
            'limit' => $setting['limit']
        );

        $results = $this->model_catalog_product->getProducts($data);

        foreach ($results as $result) {
            if ($result['image']) {
                $image = $this->model_tool_image->resize($result['image'], $setting['image_width'], $setting['image_height']);
            } else {
                $image = false;
            }

            if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
                $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')));
            } else {
                $price = false;
            }

            if ((float)$result['special']) {
                $special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')));
            } else {
                $special = false;
            }

            if ($this->config->get('config_review_status')) {
                $rating = $result['rating'];
            } else {
                $rating = false;
            }

            $this->data['products'][] = array(
                'product_id' => $result['product_id'],
                'thumb'      => $image,
                'name'       => $result['name'],
                'price'      => $price,
                'special'    => $special,
                'rating'     => $rating,
                'reviews'    => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
                'href'       => $this->url->link('product/product', 'product_id=' . $result['product_id']),
            );
        }

        if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/latest.tpl')) {
            $this->template = $this->config->get('config_template') . '/template/module/latest.tpl';
        } else {
            $this->template = 'default/template/module/latest.tpl';
        }

        $this->render();
    }
}
?>

1 个答案:

答案 0 :(得分:0)

首先,您必须获得产品类别:

$get_categories = $this->model_catalog_product->getCategories($result['product_id']);

然后使用in_array功能,检查产品是否没有某个类别,例如24是类别ID,我们不想展示其产品:

if(!in_array(24, $categories))

所以你的文件将是:

<?php
    class ControllerModuleLatest extends Controller {
        protected function index($setting) {
            $this->language->load('module/latest');

            $this->data['heading_title'] = $this->language->get('heading_title');

            $this->data['button_cart'] = $this->language->get('button_cart');

            $this->load->model('catalog/product');

            $this->load->model('tool/image');

            $this->data['products'] = array();

            $data = array(
                'sort'  => 'p.date_added',
                'order' => 'DESC',
                'start' => 0,
                'limit' => $setting['limit']
            );

            $results = $this->model_catalog_product->getProducts($data);

            foreach ($results as $result) {
                if ($result['image']) {
                    $image = $this->model_tool_image->resize($result['image'], $setting['image_width'], $setting['image_height']);
                } else {
                    $image = false;
                }

                if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
                    $price = $this->currency->format($this->tax->calculate($result['price'], $result['tax_class_id'], $this->config->get('config_tax')));
                } else {
                    $price = false;
                }

                if ((float)$result['special']) {
                    $special = $this->currency->format($this->tax->calculate($result['special'], $result['tax_class_id'], $this->config->get('config_tax')));
                } else {
                    $special = false;
                }

                if ($this->config->get('config_review_status')) {
                    $rating = $result['rating'];
                } else {
                    $rating = false;
                }

                $get_categories = $this->model_catalog_product->getCategories($result['product_id']);
                $categories = array();
                foreach($get_categories as $category){
                    $categories[] = $category['category_id'];
                }

                if(!in_array(24, $categories)){
                    $this->data['products'][] = array(
                        'product_id' => $result['product_id'],
                        'thumb'      => $image,
                        'name'       => $result['name'],
                        'price'      => $price,
                        'special'    => $special,
                        'rating'     => $rating,
                        'reviews'    => sprintf($this->language->get('text_reviews'), (int)$result['reviews']),
                        'href'       => $this->url->link('product/product', 'product_id=' . $result['product_id']),
                    );
                }
            }

            if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/latest.tpl')) {
                $this->template = $this->config->get('config_template') . '/template/module/latest.tpl';
            } else {
                $this->template = 'default/template/module/latest.tpl';
            }

            $this->render();
        }
    }
    ?>