Magento 2 ana sayfasında en çok satanlar ve en çok görüntülenen ürünü nasıl edinebilirim ?
Biz görüntülemek zorunda satanlar ve en çok görüntülenen magento 2'de ana sayfa kaydırıcısında ürün listesi.
Magento 2 ana sayfasında en çok satanlar ve en çok görüntülenen ürünü nasıl edinebilirim ?
Biz görüntülemek zorunda satanlar ve en çok görüntülenen magento 2'de ana sayfa kaydırıcısında ürün listesi.
Yanıtlar:
En çok satanlar __construct
için örnek olarak bir blok oluşturun
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
eski
<?php
namespace Sugarcode\Test\Block;
class Test extends \Magento\Framework\View\Element\Template
{
protected $_coreRegistry = null;
protected $_collectionFactory;
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Framework\Registry $registry,
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
array $data = []
) {
$this->_collectionFactory = $collectionFactory;
$this->_coreRegistry = $registry;
parent::__construct($context, $data);
}
public function _prepareLayout()
{
return parent::_prepareLayout();
}
public function getBestSellerData()
{
$collection = $this->_collectionFactory->create()->setModel(
'Magento\Catalog\Model\Product'
);
return $collection;
}
}
Son görüntülenenler için widget tarafındaki widget'ı kullanabilir veya özel blok yazabilirsiniz. \Magento\Reports\Model\ResourceModel\Product\CollectionFactory $productsFactory
Bakmak:
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Viewed.php
and
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Ordered.php
Magento 2 Slider'ınızda EN İYİ SATICI ve EN ÇOK GÖRÜLEN ürünleri görüntülemek için aşağıdaki kodu kullanın.
<?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$productCollection = $objectManager->create('Magento\Reports\Model\ResourceModel\Report\Collection\Factory');
$collection = $productCollection->create('Magento\Sales\Model\ResourceModel\Report\Bestsellers\Collection'); ?>