Jump to content

Dev Franco

Members
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • First Name
    neo
  • Last Name
    tester

Dev Franco's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi, The ajax search in my home page is not working. It works perfectly in all other pages. On entering the search keyword, request url is http://localhost/prestashop/en/search.html?q=mixtu&limit=10&timestamp=1437633759429&ajaxSearch=1&id_lang=1 which is wrong, It must be http://localhost/prestashop/en/search?q=mixtu&limit=10&timestamp=1437633759429&ajaxSearch=1&id_lang=1 . There should not be any .html .Why does it happens? Please help me.
  2. Hi all, I am newbie to prestashop. I need your valuable suggestionson the following regard. 1) If develop a mobile app using API from Prestashop as backend, will the mobile app can have all the Cart/Shipping/Catalog rules added in the Prestashop web admin? 2) If change any configuration settings in Prestashop admin, will it be available in mobile app too In short , whether the changes made in Prestashop admin shall be available for both Web and mobile apps and will they work in similar fashion. Please respond with your suggestions. Thanks in advance.
  3. Hi Szkrin, I have checked with different supplier products. No change. What happening is, {$var = 0} {foreach $products as $product} {$var} // prints 0 always {$var = 1} // prints 1 {/foreach} On each iteration, the value of $var is assigned as 0(default value set outside the loop). This is really weird. . Do you have any idea?
  4. HI Szkrin, Thanks for the response. I have tried as you suggested. But still the result is same. Unfortuantely, I have to do it in the tpl file. I think it should be possible to do something like this in template files also. Do you have nay suggestion?
  5. Hi, I am trying to group the products in cart summary page by suppliers. Within the {foreach $products as $product}{} loop, I am trying to assign a product value to a smarty variable. But when I am printing the value inside the loop, it is showing the default value which I have set before the loop. Please see the example below: {assign var='sellerid' value=55} {foreach $products as $product} {$sellerid|@print_r} {assign var='sellerid' value= $product.sellerid} {/foreach } It prints 55 1 55 1 55 1 55 1 55 1 I don't know from where this 1 comes. But the 55 is not changing. What is wrong here. Please help me.
  6. Hi, I have two file input fields. array("type"=>"file","label"=>$this->l('Logo:'),"name"=>"logo","display_image"=>true,"col"=>6,"desc"=>$this->l('Upload seller logo from your computer')), array("type"=>"file","label"=>$this->l('Shop Image:'),"name"=>"shop_image","display_image"=>true,"col"=>6,"desc"=>$this->l('Upload shop image from your computer')) But in my form , the two file input fields are generating with same name as below. <input type="file" name="logo"> <input type="file" name="logo"> Please help me
  7. Hi, I am facing the same problem. Did you got a solution?
  8. Is there any free module for ccavenue payment gateway? Please reply.
  9. Hi, How to apply the discount coupon while placing order?
  10. This will work if the site is not multilingual. If it is multilingual, it will point to the same page from all lingual menus. How to solve it? Anybody please help..
×
×
  • Create New...