Jump to content

jemmeli

Members
  • Posts

    64
  • Joined

  • Last visited

2 Followers

Profile Information

  • Activity
    Other

Recent Profile Visitors

3,437,563 profile views

jemmeli's Achievements

Newbie

Newbie (1/14)

6

Reputation

  1. Hi there any help please !
  2. Hello, i developped a t_shirt customization module ,my problem is to khnow how and which table to save data of the new custom t-shirt and the others steps to add to cart and complete the process Thanks in advance
  3. hello everybody it's long long time to me really I miss this great forum, friends I have a question: it is possible for me to add condition for quantity product I want to buy them : I have certain products and I want to buy them by two , four or six product. if it is possible how can I do that ? and thank you a lot in advance
  4. hello I have to inegrate a top-menu just like this web site http://www.sospharma.net/ but I dont know how to proceed I have 2 technics in mind now. 1- create a module to do this menu or 2- modify the category block in prestashop and chnage it to top position to much this menu please if there is any other technique or mine is not enough tell me how to proceed and thank you a lot in advance
  5. hello I have to inegrate a top-menu just like this web site http://www.sospharma.net/ but I dont know how to proceed I have 2 technics in mind now. 1- create a module to do this menu or 2- modify the category block in prestashop and chnage it to top position to much this menu please if there is any other technique or mine is not enough tell me how to proceed and thank you a lot in advance
  6. Pdioana I copy and paste your code for the prestashop 1.5 but I have got the following problem: Undefined index: price_without_reduction (C:\xampp\htdocs\t-shirt_cus\modules\blockspecials\blockspecials.php, line 94)[/color] [color=#000000]how can I fix this I dont know from when comes the "[/color][color=#000000]price_without_reduction" index I check all the tables database related to this sql but i did not found any fields with the name of [/color][color=#000000]"[/color][color=#000000]price_without_reduction"[/color]
  7. Paulito thank you very much this what i was searching for really thank you a lot friend i will mark it as SOLVED
  8. Paulito actualy it is verry ritch site thank you so much i did not know it from before but it not contain a solution for my problem the problem with the prestashop module "promotion block" it show just one random product from database , i want to view more than one product on home page .
  9. hello how can get all OR a number defined of the promotionnal product in home page ? and thank you in advance
  10. hello everybody when i was surfing the module special of prestashop I found the next code : <input type="radio" name="always_display" id="display_on" value="1" '.(Tools::getValue('always_display', Configuration::get('PS_BLOCK_SPECIALS_DISPLAY')) ? 'checked="checked" ' : '').'/> it is clear that the code is a code for a radio button but the portion that i did not understood is related to the tast one after the attribute value : (Tools::getValue('always_display', Configuration::get('PS_BLOCK_SPECIALS_DISPLAY')) ? 'checked="checked" ' : '') what does it mean this portion ?
  11. oui je cherche un module qui me permet de faire cette opération , s'il na pas de module est ce qu'il ya une méthode pour le faire ?
  12. bonjour, est ce qui il'a un module ou une façon de faire un système de ventes additionnelles avec affichage de produits dans la page panier et dans la fenêtre ajout au panier ? merci d’avance pour l'aide
  13. it is solved "bellini13": I used the hook hookdisplayShoopingCart like this: public function hookdisplayShoppingCartFooter($params) { global $smarty; } //(this is the inforrmaion that I want dump it to hidden div)-------------------------------------------------------------------------------- $sql = 'SELECT * FROM '._DB_PREFIX_.'cus ORDER BY id_cus DESC LIMIT 1'; if ($results = Db::getInstance()->ExecuteS($sql)) foreach ($results as $row){ $info_cus = 'ID du produit =>'.$row['id_product'].' :<br> TEXT =>'.$row['value_text'].' :<br> position TEXT =>'.$row['position_text']. ' :<br> FOTO =>'.$row['value_foto'].' :<br> Position du FOTO =>'.$row['position_foto'].' :<br> Le prix =>'.$row['new_price']; } //--------------------------------------------------------------------------------------------------------------------------------------------------- $this->context->smarty->assign(array( 'total_price' => $new_price, 'cus' => $info_cus//the duping variable-------------------------------------------------------------------------------------------------------- )); return $this->display(__FILE__, 'xxx.tpl'); } and then in my tpl file called xxx.tpl i put this code and a little jquery to hide the div <div id="hidden_div">{$cus}</div> <script type="text/javascript"> alert("hhhhh"); //$("#hidden_div").hide(); </script> and it WOOOOOOOOOOOOOOOOOOOOOOOOOOOOOOORKS fine
  14. thank you a lot "bellini13" for you answer . i understand most of your ansewer , but the part related to the dumping an output into a hidden element i did not understood well please if you can give me a go with a sipme code , or if there is a reference on the web talking about this methode and thank you in advance
×
×
  • Create New...