Jump to content

rxdue

Members
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • First Name
    rx
  • Last Name
    due

rxdue's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi i need to print the product short description with the product name, to do that i need to show it in the order page in backoffice. I've tried to add {$product['description_short']} in admin/themes/default/template/controllers/orders/_product_line.tpl but it doesn't work. Any idea? Thanks to all
  2. Hi, I need to have the vat field required according to the radio button selected on registration page. Thanks to all
  3. I have a problem with autentication page.. even if i set "cache" to "no" and "force compilation" the changes isn't visible.. can't see the text on login page Can someone help me? PS 1.6
  4. Im close but can't fix this. On line 217 of "Customer.php" i've edited this: if ($this->id_default_group == Configuration::get('PS_CUSTOMER_GROUP')) { if ($this->is_guest) { $this->id_default_group = (int)Configuration::get('PS_GUEST_GROUP'); } else { $this->id_default_group = (int)Configuration::get('PS_CUSTOMER_GROUP'); } } with this: if ($this->id_default_group == Configuration::get('PS_CUSTOMER_GROUP')) { if ($this->is_guest) { $this->id_default_group = (int)Configuration::get('PS_GUEST_GROUP'); } else { if ($id_gender == 3) { $this->id_default_group = 3; } else { $this->id_default_group = 4; } } } But this keep assign the 4 even if $id_gender is 4
  5. Thanks! This work in part. While registration the user gets the group in "Group access" but in the field "Default group" remain the default one.. I was trying to change it in "Customer.php" but i can't =(
  6. Thanks GT ITECH. I need to add just an "if" to choise the default group.. if ($id_gender == 1) { $id_default_group = 3; } else { $id_default_gruop = 4; } But i can't where to place it =\
  7. Hi! I need to know where prestashop assign the client group while registration. I think in "Customer.php" but i didn't found that. Can someone help me? Thanks
  8. Why prestashop give you the groups when you can't use them? It's simple if someone register to my site with VAT Number his group is another.
  9. Hi, i just need to assign to the clients who register with vat number a group that i've created. How can be done automatically? It can be done? Thanks
×
×
  • Create New...