citoma Posted August 8, 2015 Share Posted August 8, 2015 Hello. How can I change the Order-ID to numbers instead of letters. There are enough answers in the forum, and I already used the solution some months ago. And IT WORKED!! Thanks for that! BUT since the newest shop-update to 1.6.1.0 none of the solutions work anymore. Not the Module, and also not the order.php-changes. Does anybody have the same problem? Does anybody know the solution? Thanks! Link to comment Share on other sites More sharing options...
NemoPS Posted August 10, 2015 Share Posted August 10, 2015 Here:http://nemops.com/prestashop-replace-order-references-with-ids/#.Vchr6vnzrmg Link to comment Share on other sites More sharing options...
citoma Posted August 11, 2015 Author Share Posted August 11, 2015 Thank you very much Nemo1! Your answer helped me out! :-) Link to comment Share on other sites More sharing options...
Eolia Posted August 11, 2015 Share Posted August 11, 2015 Personnaly, i use this: public static function generateReference() { $context = Context::getContext(); $reference = $context->cart->id.'-'.$context->cart->id_shop; return str_pad($reference, 9, '0', STR_PAD_LEFT); } Link to comment Share on other sites More sharing options...
Recommended Posts