Jump to content

Przerobienie modułu "Popularne Produkty" na "Nowe Produkty"


flamaster

Recommended Posts

Cześć

 

Przerabiam moduł "Popularne Produkty" tak żeby własnie na stronie głównej pod tym blokiem wyświetlił mi się kolejny blok gdzie będą wyświetlane "Nowe Produkty". I nie chodzi mi tutaj o Tabs.

 

Całość przerobiłem z wyżej wspomnianego modułu. Mój moduł juz się instaluje, konfiguruje, zmienia pozycje itp, wyświetla produkty... no własnie... wyświetla "Popularne produkty" a nie nowe. 

 

Potrzebuję przebudować funkcję getProducts tak żeby pobierał tylko nowe. Czy ktoś może pomóc?

Domyślam się że trzeba pozmieniać gdzieś coś w tym kodzie.


    protected function getProducts()
    {
        $category = new Category((int) Configuration::get('HOME_NEW_CAT'));
 
        $searchProvider = new CategoryProductSearchProvider(
            $this->context->getTranslator(),
            $category
        );
 
        $context = new ProductSearchContext($this->context);
 
        $query = new ProductSearchQuery();
 
        $nProducts = Configuration::get('HOME_NEW_NBR');
        if ($nProducts < 0) {
            $nProducts = 12;
        }
.
.
.
.

 

Po zrobieniu takiego modułu będę chciał na pewno zrobić moduł "Produkty w promocji"

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...