Jump to content

Afisare Stoc


Recommended Posts

Buna,

As avea si eu nevoie de ajutor.

Folosesc Prestashop 1.5.6

La configurarea produselor folosesc optiunea:

Doresc specificarea manuala a cantitatilor disponibile

Si imi sunt afisate si in site numarul de bucati disponibile. As dori sa nu mai apara numarul de bucati disponibile in front end. Clientul sa nu mai vada.

Am setat si trigerul :

Disponibilitate: In stoc

Cum pot scoate din front end numarul de bucati?

 

Multumesc anticipat!

Link to comment
Share on other sites

pune acest cod in module/homefutured/homefutured.php

 

" shuffle($products); "

 

c-am asa ar trebui:

if (!$this->isCached('homefeatured.tpl', $this->getCacheId('homefeatured')))
        {
            $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));

            shuffle($products);

            $this->smarty->assign(array(
                'products' => $products,
                'add_prod_display' => Configuration::get('PS_ATTRIBUTE_CATEGORY_DISPLAY'),
                'homeSize' => Image::getSize(ImageType::getFormatedName('homefeat')),
            ));
        }

la verziune 1.5.6

  • Like 2
Link to comment
Share on other sites

@costi43: multumesc, aparent a functionat; cu mentiunea ca nu le schimba chiar la fiecare refresh. poate fi o cauza si faptul ca display=8 si total home prods=12 ?

ma gandesc eu, ca adaugarea unui numar mai mare de produse cu home implicit va creste si rata de suffle.

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