उत्पादों की सूची में नवीनतम, छूट, सबसे ज्यादा बिकने वाले उत्पादों की समीक्षा करें


10

उत्पादों की सूची पृष्ठ पर, हम डिफ़ॉल्ट Magento में "स्थिति, नाम, मूल्य" के अनुसार क्रमबद्ध देख सकते हैं।

कैसे छांटना है?

  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, etcऔर Modelमें Blockजोड़ने Productमें Productजोड़ने 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 में बेबी

pastebin.com/5403TsLa => list.php pastebin.com/Z7WK7C1m => config.php कृपया फाइलों के ऊपर की जाँच करें ...
Magento में बेबी

हम्म कोड मेरे लिए ठीक काम करता है मैं समझ नहीं पा रहा हूं कि आपकी गलती क्या है
dh47

मैं इसे एक बार फिर से देखूंगा ....
मैगेंटो में बेबी
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.