Jump to content

Home Featured piccola modifica


nunziorash

Recommended Posts

Ciao a tutti, vorrei modificare il modulo homefeatured in modo tale che non appaino solo i prodotti presenti in home come categoria ma i prodotti presenti in tutte le categorie il codice è questo:

public function hookDisplayHome($params)
    {
        $category = new Category(Context::getContext()->shop->getCategory(), (int)Context::getContext()->language->id);
        $nb = (int)(Configuration::get('HOME_FEATURED_NBR'));
        $products = $category->getProducts((int)Context::getContext()->language->id, 1, ($nb ? $nb : 10), NULL,NULL,false,true,true,($nb ? $nb : 10));

come potete vedere c'è anche la funzione random.

 

Modificando con questa riga si sceglie la categoria da far visualizzare:

$category = new Category(4, (int)Context::getContext()->language->id);

Ma io far apparire i prodotti presenti in tutte le categorie come faccio?

 

Grazie

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...