Jump to content

Liofey

Members
  • Posts

    31
  • Joined

  • Last visited

  • Days Won

    1

Liofey last won the day on February 6

Liofey had the most liked content!

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Liofey's Achievements

Newbie

Newbie (1/14)

4

Reputation

  1. Hi, I have a project requirement, Could somebody suggest me? Which module should I use? It doesn't matter if I should using paid modules. Change exchange rate value each category product. In the default prestashop, we can change the exchange rate in localization > currencies, but I want the exchange rate different for each category product. How to achieve that? Make an order via backoffice but when search product, not by name again, it should be by reference code For several customer groups their cart should has minimum of amount in their cart. Example : Member A should buy minimum 5000 USD in their cart, Member group B should buy minimum 7.500 USD in their cart. When the order finish, the member got member point Thank you for your suggestion
  2. Hi, I have weird problem in my backoffice. When I changed the product price and click save and stay, It show nothing changed. Could somebody help me solve my problem? That's not always happen. But it really bother me. My prestahop version is 1.6.1.7 I have around 6000 products My server in hawkhost - semi dedicated hosting. (They said, that problem occurs not from their side). Thank you
  3. For prestashop 1.6.1.7 When I check into the code, it need additional code : This is works for me If you want save without send email $objOrder = new Order(1); //order with id=1 $history = new OrderHistory(); $history->id_order = (int)$objOrder->id; $history->changeIdOrderState(3, (int)($objOrder->id)); //order status=3 $history->add(true); If you want save with send email $objOrder = new Order(1); //order with id=1 $history = new OrderHistory(); $history->id_order = (int)$objOrder->id; $history->changeIdOrderState(3, (int)($objOrder->id)); //order status=3 $history->addWithemail(true);
  4. Yeah it similar with me. How to fix that? it remains error only in Firefox
  5. setuju dengan indobusana cara paling mudah untuk preorder dengna metode seperti itu lainnya harus membeli modul. Belum ada modul gratis yang support.
  6. How handle the return manually? Could you explain it RasmusKnabe?
  7. hi vekia. my friend told me the position number will be re arrange from 0,1,2,etc..but at my website it's not rearrange, when i delete the temporary product the clean position method not update the position number from 0..
  8. i found the problem it about the cleanposition method in the admin. It should rearrange the position but it does not working in my website. Could you tell me what's the matter?
  9. how to solve this problem i have change the php file classes/Product.php. But it does not effect in my database My question, if i delete the temporary products, all product position will be reset into 0,1,2,3,xxx or it just re ordering ??? Because when i check in my database, its not reset the positions.
×
×
  • Create New...