Jak zdobyć bestseller i najczęściej oglądany produkt na stronie głównej Magento 2 ?
Musimy wyświetlić listę bestsellerów i najczęściej oglądanych produktów na suwaku strony głównej w Magento 2.
Jak zdobyć bestseller i najczęściej oglądany produkt na stronie głównej Magento 2 ?
Musimy wyświetlić listę bestsellerów i najczęściej oglądanych produktów na suwaku strony głównej w Magento 2.
Odpowiedzi:
Dla bestsellera utwórz blok w __construct
instancji get
\Magento\Sales\Model\ResourceModel\Report\Bestsellers\CollectionFactory $collectionFactory,
dawny
<?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;
}
}
Do ostatnio oglądanego możesz użyć widgetu po stronie administratora lub możesz napisać własny blok za pomocą \Magento\Reports\Model\ResourceModel\Product\CollectionFactory $productsFactory
Patrzeć na:
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Viewed.php
and
vendor\magento\module-backend\Block\Dashboard\Tab\Products\Ordered.php
Użyj poniższego kodu, aby wyświetlić NAJLEPSZY SPRZEDAWCA, a także NAJCZĘŚCIEJ PRZEGLĄDANE produkty w swoim suwaku Magento 2.
<?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'); ?>