Jump to content
  • 0

"Zapytaj o produkt"- warunek widoczności


EwelinaCSI

Question

[EDIT] - ROZWIĄZANY

 

Hej!

 

Macie może pomysł co należy dodać w kodzie żeby moduł Zapytaj o produkt (stworzony na zasadzie Sendtoafriend) wyświetlał się tylko i wyłącznie w momencie gdy produkt jest niedostępny?
Dodam, że chciałam również żeby wyświetlał się dopiero po zalogowaniu i z tym poradziłam sobie bez problemu dodając {if $logged}. Próbowałam podobnie dodać {if $product->quantity<=0} - niestety to nie działa.
Jestem samoukiem jeśli chodzi o grzebanie w kodzie, dlatego proszę o wyrozumiałość ;>

 

Dziękuję i pozdrawiam

Edited by EwelinaCSI (see edit history)
Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

    W oryginalnym module sendtofried jest funkcja odpowiadająca za wyświetlenie modułu:
    
   

 public function hookExtraLeft($params)
    {
        /* Product informations */
        $product = new Product((int)Tools::getValue('id_product'), true, $this->context->language->id);
        
        
        //---- dodane
        if ($product->quantity > 0) {
                return;
        }
        //---- end
        
        
        $image = Product::getCover((int)$product->id);


        $this->context->smarty->assign(array(
            'stf_product' => $product,
            'stf_product_cover' => (int)$product->id.'-'.(int)$image['id_image'],
            'stf_secure_key' => $this->secure_key
        ));

        return $this->display(__FILE__, 'sendtoafriend-extra.tpl');
    }

    
    
    spróbuj w Twoim module zmodyfikować funkcje w podobny sposób

Edited by atomek (see edit history)
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...