제품 목록 페이지에서 최신, 할인, 가장 많이 팔린 리뷰로 제품 정렬 "


10

제품 목록 페이지에서 기본 마 젠토에서와 같이 "위치, 이름, 가격"별로 정렬을 볼 수 있습니다.

정렬 방법

  1. 최신 제품 (최근에 업로드)
  2. 할인 (최고 할인 제품 우선)
  3. 베스트셀러 (가장 많이 팔린 제품)
  4. 리뷰 (최고 평점 제품이 먼저 표시됨)

설명이 필요한 경우 알려주세요 ...

답변:


7

for- > 최근 조회 여기를 참조하십시오

등급별 정렬->

파일을 복사

app/code/core/Mage/Catalog/Block/Product/List.php

app/code/local/Mage/Catalog/Block/Product/List.php

list.php이 줄 을 찾아

$this->_productCollection =$layer->getProductCollection();

그 주위 line no 86에 다음 코드를 추가하십시오.

$this->_productCollection->joinField('rating_summary', 'review_entity_summary', 'rating_summary', 'entity_pk_value=entity_id', array('entity_type'=>1, 'store_id'=> Mage::app()->getStore()->getId()), 'left')

이제 복사

app/code/core/Mage/Catalog/Model/Config.php

app/code/local/Mage/Catalog/Model/Config.php

config.php 에서이 코드를 찾으십시오.

$options = array(
    'position'  => Mage::helper('catalog')->__('Position')
);

~로 바꾸다

$options = array(
    'position'  => Mage::helper('catalog')->__('Position'),
    'rating_summary' => Mage::helper('catalog')->__('Rating')
);

->>를 위해 BESTSELLER

폴더 이름을 만들이 절차를 수행 Inchoo하고 해당 폴더 장소 안에 Catalog내부 카탈로그 3 개 폴더를 생성 Block, etcModel에서 Block추가 ProductProduct추가 List와의 List파일을 만들고로 이름을 Toolbar.php그것으로이 코드를 광고

<?php
class Inchoo_Catalog_Block_Product_List_Toolbar extends Mage_Catalog_Block_Product_List_Toolbar
{
    public function setCollection($collection)
    {
        parent::setCollection($collection);

        if ($this->getCurrentOrder()) {
            if($this->getCurrentOrder() == 'qty_ordered') {
                $this->getCollection()->getSelect()
                     ->joinLeft(
                            array('sfoi' => $collection->getResource()->getTable('sales/order_item')),
                             'e.entity_id = sfoi.product_id',
                             array('qty_ordered' => 'SUM(sfoi.qty_ordered)')
                         )
                     ->group('e.entity_id')
                     ->order('qty_ordered ' . $this->getCurrentDirection());
            } else {
                $this->getCollection()
                     ->setOrder($this->getCurrentOrder(), $this->getCurrentDirection())->getSelect();
            }
        }

        return $this;
    }
}

이제 etc폴더에 이름을 가진 파일을 만들고이 config.xml코드를 추가하십시오

<config>
    <modules>
        <Inchoo_Catalog>
            <version>0.1.0</version>
        </Inchoo_Catalog>
    </modules>
    <global>
        <blocks>
            <catalog>
                <rewrite>
                    <product_list_toolbar>Inchoo_Catalog_Block_Product_List_Toolbar</product_list_toolbar>
                </rewrite>
            </catalog>
        </blocks>
        <models>
            <catalog>
                <rewrite>
                    <config>Inchoo_Catalog_Model_Config</config>
                </rewrite>
            </catalog>
            <catalog_resource>
                <rewrite>
                    <product_collection>Inchoo_Catalog_Model_Resource_Product_Collection</product_collection>
                </rewrite>
            </catalog_resource>
        </models>
    </global>
</config>

이제 Model파일 이름을 만들고이 Config.php코드를 추가하십시오.

<?php class Inchoo_Catalog_Model_Config extends Mage_Catalog_Model_Config
{
    public function getAttributeUsedForSortByArray()
    {
        return array_merge(
            parent::getAttributeUsedForSortByArray(),
            array('qty_ordered' => Mage::helper('catalog')->__('Sold quantity'))
        );
    }
}

또한 생성 Resource에 폴더 Model및에 Resource폴더를 만들고 Product폴더와 파일 이름을 생성 Collection.php하고 다음 코드를 추가합니다.

<?php
class Inchoo_Catalog_Model_Resource_Product_Collection extends Mage_Catalog_Model_Resource_Product_Collection
{
    protected function _getSelectCountSql($select = null, $resetLeftJoins = true)
    {
       $this->_renderFilters();
       $countSelect = (is_null($select)) ?
           $this->_getClearSelect() :
           $this->_buildClearSelect($select);

       if(count($countSelect->getPart(Zend_Db_Select::GROUP)) > 0) {
           $countSelect->reset(Zend_Db_Select::GROUP);
       }

       $countSelect->columns('COUNT(DISTINCT e.entity_id)');
       if ($resetLeftJoins) {
           $countSelect->resetJoinLeft();
       }
       return $countSelect;
    }
}

이제이 코드를 추가 app/etc/modules하는 파일 을 작성 하여이 모듈을 활성화하십시오 Inchoo_Catalog.xml.

<?xml version="1.0"?>
<!--
/**
 * Magento
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE_AFL.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 * If you did not receive a copy of the license and are unable to
 * obtain it through the world-wide-web, please send an email
 * to license@magentocommerce.com so we can send you a copy immediately.
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade Magento to newer
 * versions in the future. If you wish to customize Magento for your
 * needs please refer to http://www.magentocommerce.com for more information.
 *
 * @category    Mage
 * @package     Mage_Connect
 * @copyright   Copyright (c) 2014 Magento Inc. (http://www.magentocommerce.com)
 * @license     http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */
-->
<config>
    <modules>
        <Inchoo_Catalog>
            <active>true</active>
            <codePool>community</codePool>
            <depends />
        </Inchoo_Catalog>
    </modules>
</config>

SALE당신이 제안 확장을 나는 이것을 달성하기 위해 어떤 프로그램 방법을 찾을 수있다.


안녕하세요, 답장을
Magento의 아기

제품 목록 페이지의 "정렬 기준"에서 "정격"옵션을 얻기 위해해야 ​​할 다른 작업이 있습니까? 캐시 및 인덱스 관리를 수행했지만 제품 목록 페이지의 정렬 기준 "에 등급 옵션이 표시되지 않습니다.
Baby in Magento

pastebin.com/5403TsLa => list.php pastebin.com/Z7WK7C1m => config.php 위의 파일을 확인하십시오 ....
Baby in Magento

흠 코드가 제게 잘 작동합니다 당신의 잘못이 무엇인지 이해할 수 없습니다
dh47

다시 한 번 확인하겠습니다 ....
Magento의 아기
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.