Search the Community
Showing results for tags 'order ID'.
-
Buenas, tengo un problema y espero que puedan ayudarme. Actualmente estoy trabajando con Prestashop 1.6 y necesito saber como puedo poner que la referencia id sea igual al pedido id. El caso es que con el siguiente código se pone igual, pero el problema es que cuando elimino el pedido la refer...
- 5 replies
-
- order id
- reference id
-
(and 3 more)
Tagged with:
-
I am trying to insert the Order ID (not reference) {id_order} and Product ID {id_product} into my email confirmation. Neither one is being processed when the email is being sent. In both cases just the variable is showing in the email. Any ideas?
- 2 replies
-
- Email Confirmation
- Order ID
-
(and 1 more)
Tagged with:
-
Hello everyone, First, I apologize for the long post, but I believe this requires details. I am having these problems with shopping carts, on both PS 1.6.09 and 1.5.6 (I have two different stores): 1- when a customer (new or old) logs in, an empty ghost cart is created automatically in B...
-
Hi everybody. I installed modrefchange in order to turn order reference from alphabetical to numerical, but it doesn't work; it says "data updated", though. I use Prestashop 1.6.0.9. I installed the module in another site I manage and worked perfectly.
- 3 replies
-
- 1
-
-
- modrefchange
- change code
-
(and 4 more)
Tagged with:
-
I created a payment module for credit card processing. I have a problem where my customer is receiving a email confirming their order before they have entered their credit card information. This has caused a bit of confusion for the customer. The current process is as follows: User chooses...
- 3 replies
-
- 1
-
-
- validateOrder
- payment
-
(and 2 more)
Tagged with:
-
how to enable order id in numbers? we prefer to order id in number not alphabets is there any option ? Thanks
-
Hello, Can someone please help me with how I can pass the order ID, order total, and zip code through my bizrate code? Thanks!
-
To replace uppercase in the Order reference and replace with numbers (id_order as in older versions) I made this simple code override in /override/classes/order/Order.php: <?php class Order extends OrderCore { public function getUniqReference() { $query = new DbQuery(); $query->select('MIN(id...
- 53 replies
-
- 2
-
-
- order reference
- uppercase
- (and 4 more)
-
we have recently migrated to prestashop and want to add a manual payment system for customers to pay cash at a paypoint out let, I have managed to set up the payment system but need to be able to add a reference to the payment, in our old system i was set up to automatically add the order ID to the...
-
I am trying to insert the tracking code of an affiliate I am abuot to start working with. They have their own system and publishers, but I need to insert their tracking code in my site. I have two questions: Where should I insert the code? Is it at the end of the order_confirmation.tpl? How ca...
- 3 replies
-
- affiliate
- order value
-
(and 3 more)
Tagged with:
-
Hi, when a user buys a product as a guest it is usefull after the confirmation dialog to show the order reference, not the order id which is only internal... You can see that if you go to buy as guest and then select one of: bank wire, COD, or cheque. The text displays the id no which is somet...
- 1 reply
-
- reference order
- order id
-
(and 2 more)
Tagged with:
-
Greetings. Don't know if this is the right place, but i have this problem i need solved. In the email the customer recieve upon paying ( order confirm email ), where they can see what they bought and for how much.. in there i need to change the order id so it will show the cart id... i...
-
- order confirm
- order id
-
(and 4 more)
Tagged with:
-
Hi all, I have a client who is persistent about getting the invoice ID number and order ID number removed from customer correspondence, namely the PDF Invoice and Order Email - How would I go about this? Any info is greatly appreciated!
- 1 reply
-
- invoice
- invoice id
-
(and 1 more)
Tagged with:
-
Hi, I'm trying to add the order id on the email order confirmation subject that its sent to a customer. I want the subject to be like "Subject [order id]". I've tried adding '['.$order->id.']'. Edit: I added that to PaymentModule.php and seems to work. Now I need to add it to the order sta...