Jump to content

mtblanche

Members
  • Posts

    31
  • Joined

  • Last visited

Profile Information

  • Location
    London
  • Activity
    User/Merchant

mtblanche's Achievements

Newbie

Newbie (1/14)

4

Reputation

1

Community Answers

  1. Hi I had a question on prestashop. I am trying to remove a product from an order, but I cannot see the remove/edit button. Would you know why that is? accordign to the prestashop manual, I should be able to do that: http://doc.prestashop.com/display/PS15/Managing+Orders I am also trying to increase the price of a product by adding a negative discoutn, but it doesn't seem to work. Anyone know how to fix this? I have tried changing the status in many ways but it doesn't seem to work.
  2. Hi When I have deleted all the combinations through Catalogue->Attributes and Values->Trash Icon(to delete ). What happened afterwards was that my prices were not showing anymore in the catalogue view. The price was always saying 0 for all products. I have 30,000 products in my shop so it cannot be done manually. How could I delete all the combinations and keep the prices showing? I am using: PrestaShop™ 1.5.6.2 Thank you Regards Jan
  3. When I import new products with images, I get this message: " Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists." When I am uploading with pictures, I get an error message after I upload around 6 MB worth of images cumulatively (they have 33kb each x 186 images) and after 40-60 seconds. " Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists." Php info: http://libery.cz/php.info.php I am usin: 1.5.6.2 I have attached the csv file. (rename .txt. to .csv) Can somebody help me with this please? I have been trying to solve this for last 4 days. CSVfileTOimport copy.txt
  4. There is definitely a problem with importing. When I import new products with images, I get this message: " Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists." I can upload a few files from here, the error messages appears. change the .txt file to .csv does it work for you? CSVfileTOimport copy.txt
  5. Hi When I am uploading without pictures, it times out after around 3 minutes. And I get the below error message. " Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists." When I am uploading with pictures, I get an error message after I upload around 6 MB worth of images cumulatively (they have 33kb each x 186 images) and after 40-60 seconds. Error message: " Oops, something went wrong. Try to refresh this page or feel free to contact us if the problem persists." What could I do? I cannot find a solution to this. max_execution_time 50000 max_file_uploads 20 max_input_nesting_level 64 max_input_time -1 max_input_vars 5000 memory_limit 120M php info: http://libery.cz/php.info.php
  6. Hi I have tried uploading Thomas' file in version 1.5.6.2, but it is not working for me? Anyone else? This is the error message 3 errors Sluchátka (ID: 1) cannot be saved Property Product->depth is not valid Reproduktory (ID: 2) cannot be saved There are 2 warnings. Hide warning Rewrite link for Sluchátka (ID: 1) was re-written as sluchatka. Rewrite link for Reproduktory (ID: 2) was re-written as reproduktory.
  7. Is this a bug in prestashop? I have done the upload exactly according to the manual and tried many modifications, but it is not working
  8. Hi I want to upload multiple categories or pictures at once using the csv file. This is an example: I want the product to be associated with 2 categories hence: ;iPods,Laptops; This is the complete line form the CSV file entry, but it doesn't want to work. DOESNT WORK - Multiple value separator 7;1;Shure SE210 Sound-Isolating Earphones for iPod and iPhone;iPods,Laptops;125;2;80;1;;;41426;43465;RP-demo_7;RF-demo_7;Shure Online Store;Shure;1234567890123;;0;0.1;0.1;0.1;0.040793;15;1;;;;;<p>New design.</p>;<p>New design.</p>;Headphones;Meta title-ShureEarphones;Meta keywords-ShureEarphones;Meta description-ShureEarphones;Shure-SE210-Sound-Isolating-Earphones-for-iPod-and-iPhone;In Stock;Current supply. Ordering availlable;1;;2013-03-01;1;;0;;0;new;0;0;0;0;0; WORKS (single entry) 7;1;Shure SE210 Sound-Isolating Earphones for iPod and iPhone;iPods;125;2;80;1;;;41426;43465;RP-demo_7;RF-demo_7;Shure Online Store;Shure;1234567890123;;0;0.1;0.1;0.1;0.040793;15;1;;;;;<p>New design.</p>;<p>New design.</p>;Headphones;Meta title-ShureEarphones;Meta keywords-ShureEarphones;Meta description-ShureEarphones;Shure-SE210-Sound-Isolating-Earphones-for-iPod-and-iPhone;In Stock;Current supply. Ordering availlable;1;;2013-03-01;1;;0;;0;new;0;0;0;0;0; Any ideas why? Prestashop version: 1.5.6.2
  9. Hi bellini13 Would you happen to know what class file to change if one wants the id_customer to be integrated in the registration confirmation email. (account.html)? Thank you? Jan
  10. Would anyone happen to know what class file to change if one wants the id_customer to be integrated in the registration confirmation email. (account.html)
  11. Assuming it is PS v1.5, there is no need to change OrderHistory class. Just edit/override the PaymentModule class and add the id_customer as $data = array( '{id_customer}' => $this->context->customer->id, '{firstname}' => $this->context->customer->firstname, '{lastname}' => $this->context->customer->lastname, '{email}' => $this->context->customer->email, ... }
  12. Assuming it is PS v1.5, there is no need to change OrderHistory class. Just edit/override the PaymentModule class and add the id_customer as $data = array( '{id_customer}' => $this->context->customer->id, '{firstname}' => $this->context->customer->firstname, '{lastname}' => $this->context->customer->lastname, '{email}' => $this->context->customer->email, ... }
  13. Hi bellini13 I am using PS v1.5 and It worked!!!!!! Fantastic. Thank you so very very much. Regards Jan
  14. I would like to add {id_customer} to one of the email templates (Order Confirmation email). I guess it should be changed in this file first and the new variable should be defined: classes/order/OrderHistory.php I have added code in bold. It didn't work though. Any suggestions? SELECT osl.`template`, c.`lastname`, c.`firstname`, osl.`name` AS osname, c.`email`, os.`module_name`, os.`id_order_state`, c.`id_customer` ... $data = array( '{id_customer}' => $result['id_customer'], '{lastname}' => $result['lastname'], '{firstname}' => $result['firstname'], '{id_order}' => (int)$this->id_order, '{order_name}' => $order->getUniqReference() );
×
×
  • Create New...