Current issue: When a customer makes an order through Woocommerce, they receive an automated email with their purchased ticket number. However, the purchased ticket number is not in the correct format.
The email sends their ticket number as 'SECOND: 34', but there's no way within files/plugins etc I can change this. The best solution is to change in the email from 'SECOND: 34' to 'MIN: 0 SEC: 34', as an example.
Is there a way to dynamically upate/change strings within WooCommerce automated emails?
The only solution I can think of is to create a function that says if text is 'SECOND: 34' then display at as 'MIN: 0 SEC: 34'. I know this would require quite a lot of code to do, but it's the only workaround I can potentially think of. Thanks
I've tried locating the plugin files but cannot find anywhere that this allows for it. I'm hoping that I can create some code that automatically changes the output text in the email to be displayed as something else.