Jump to content

bene82

Members
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Location
    Italy
  • Activity
    Freelancer

bene82's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. hi Vekia, I've just tested your module, and I think I will use it on my projects. I have only a question. How can I de-authorize your app to access my profile information on facebook? What's its name? I cannot find it in my list of apps authorized. thank you
  2. Good morning to everyone, I'm writing this post trying to find experiences and opinions about the integration of Prestashop with a series of service like eBay, Amazon and price comparators. In detail I want to know your opinion and experience using third parts services and/or PS modules to achieve multiple exportations. I'm also interested to know fails and problems related with this kind of procedures. I will really appreciate any of your comments, Thank you!
  3. Ciao a tutti, scrivo questo post per cercare di raccogliere pareri ed esperienze legate all'integrazione di Prestashop con una serie di servizi sia di vendita che di comparazione prezzi. Nello specifico vorrei sapere i vostri pareri ed esperienze riguardo ad integrazioni multiple, ad esempio eBay e Amazon, problemi relativi alla gestione dei prodotti e degli ordini, consigli e suggerimenti. Ringrazio fin d'ora chi mi darà riscontri sulla propria esperienza.
  4. My website gives a forbidden page error. This occurs 'sometimes' when the page is reloaded. Anyone has experienced the same issue? Thanks
  5. Using a filter module I loose the $path and then the breadcrumbs. The only value I found is this array: array ( [isolang] => it [id_lang] => 1 [id_category] => 25 [controller] => category ) 1 With this I need to get the name and the link of the category. Anyone can help me to do this? Thanks in advance
  6. I'm not sure on where is best section to post...just this
  7. In Product.tpl I've created three checkboxes to buy multiple items, here is the example with 3 bottles: <tr> <td class="pname"> <input type="radio" onclick="qtyChange('{$product->id}','3','{$product->reference|escape:'htmlall':'UTF-8'}','{$productPrice*3} €', '{$productPrice*3}', '3 bottiglie');" value="{$product->id}" id="pacco_prodotto_3" name="pacco_prodotto"> <label for="pacco_prodotto_3" class="productpack">3 bottiglie </label></td> <td class="pprice"><label for="pacco_prodotto_3" class="currentprice">{$productPrice*3} €</label></td> </tr> Next I've setup a discount on quantity, so if you buy 3 or more bottles you have a discount. I need to show the discounted price and not the base price. I've found something similar but them are all related ro cycle all the discounts, and is not what I want Thank you very much
  8. In Product.tpl I've created three checkboxes to buy multiple items, here is the example with 3 bottles: <tr> <td class="pname"> <input type="radio" onclick="qtyChange('{$product->id}','3','{$product->reference|escape:'htmlall':'UTF-8'}','{$productPrice*3} €', '{$productPrice*3}', '3 bottiglie');" value="{$product->id}" id="pacco_prodotto_3" name="pacco_prodotto"> <label for="pacco_prodotto_3" class="productpack">3 bottiglie </label></td> <td class="pprice"><label for="pacco_prodotto_3" class="currentprice">{$productPrice*3} €</label></td> </tr> Next I've setup a discount on quantity, so if you buy 3 or more bottles you have a discount. I need to show the discounted price and not the base price. I've found something similar but them are all related ro cycle all the discounts, and is not what I want Thank you very much
  9. How can I do the same for subcategories? I need to have a specific class to the last element of a row, exactly the fifth in each row. Any help will be appreciated
  10. I have these variables: $idben47 Smarty_Variable Object (3) ->value = "0.00" ->nocache = false ->scope = "Smarty root" $idben48 Smarty_Variable Object (3) ->value = "120.00" ->nocache = false ->scope = "Smarty root" $idben49 Smarty_Variable Object (3) ->value = "0.00" ->nocache = false ->scope = "Smarty root" How I can dynamically get these in my tpl file? In my tpl file I already have the $id_attribute variable (47,48,49 in this case). I'm trying to do something like this: Prezzo:{${'idben'|cat:$id_attribute[spam-filter] But the system don't get the variable... Normally if i use the number directly it works: Prezzo:{${'idben'|48[spam-filter] Thank you in advance
  11. Sono riuscito ad assegnare le seguenti variabili associate all'id di un attributo: $idben47 Smarty_Variable Object (3) ->value = "0.00" ->nocache = false ->scope = "Smarty root" $idben48 Smarty_Variable Object (3) ->value = "120.00" ->nocache = false ->scope = "Smarty root" $idben49 Smarty_Variable Object (3) ->value = "0.00" ->nocache = false ->scope = "Smarty root" Come faccio ad accedere alla variabile corrispondente(value) nel mio file tpl? Ho accesso all'id (in questo caso 47,48,49) ma non so come scrivere un codice corretto. Ho provato: <span>Prezzo:{$idben.id_attribute}</span> ma senza risultati... Grazie
  12. I need to edit my radio buttons to show the related price. Here's my situation This is the array I want to iterate in $combinations Smarty_Variable Object (3) ->value = Array (3) 47 => Array (13) attributes_values => Array (1) 4 => "1" attributes => Array (1) 0 => 21 price => 0 specific_price => Array (0) ecotax => 0 weight => 0 quantity => 20 reference => "" unit_impact => "0.00" minimal_quantity => "1" available_date => "" id_image => 15 list => "'21'" 48 => Array (13) attributes_values => Array (1) 4 => "3" attributes => Array (1) 0 => 22 price => 16.528926 specific_price => Array (0) ecotax => 0 weight => 0 quantity => 20 reference => "" unit_impact => "120.00" minimal_quantity => "1" available_date => "" id_image => 15 list => "'22'" 49 => Array (13) attributes_values => Array (1) 4 => "6" attributes => Array (1) 0 => 23 price => 28.92562 specific_price => Array (0) ecotax => 0 weight => 0 quantity => 20 reference => "" unit_impact => "0.00" minimal_quantity => "1" available_date => "" id_image => 15 list => "'23'" ->nocache = false ->scope = "Smarty root" The value I'm looking to use is unit_impact => "120.00" How can I get the corresponding price using smarty ? Thanks
×
×
  • Create New...