efgrib Michael Benze Multishop newbie Topic creator registered since: 15.01.2014 Posts: 2 | the markers will not get any data from the order, e.g. Dear ###BILLING_FIRST_NAME### ! results to Dear ! in email order confirmation it works fine
[This article was edited 1 times, at last 12.02.2014 at 08:16.] |
Written on: 12. 02. 2014 [07:56] |
bas Bas van Beek Multishop guru registered since: 12.05.2010 Posts: 644 | V2 is no longer supported. I have verified the code in V3 and it is there: $array1=array(); $array2=array(); $array1[]='###DELIVERY_FIRST_NAME###'; $array2[]=$tmpArray['delivery_first_name']; $array1[]='###DELIVERY_LAST_NAME###'; $array2[]=preg_replace('/\s+/', ' ', $tmpArray['delivery_middle_name'].' '.$tmpArray['delivery_last_name']); $array1[]='###BILLING_FIRST_NAME###'; $array2[]=$order['billing_first_name']; $array1[]='###BILLING_LAST_NAME###'; $array2[]=preg_replace('/\s+/', ' ', $tmpArray['billing_middle_name'].' '.$tmpArray['billing_last_name']); Download our demo package for quick test: https://www.typo3multishop.com/demo-package/ |
Written on: 19. 07. 2014 [22:00] |