 2022-02-03 17:31 | Hi,
I'm using QC v6.6 and language is set on "nl", but the copyright in email footer stays Polish.
It's located in file orders.php:
$sMailContent .= "\n\n".( LANGUAGE == 'pl' ) ? 'Wysłane przez program Quick.Cart' : 'Sent by the Quick.Cart program';
Should be in English because my language is not "pl".
Guido
|
 2022-02-04 10:26 | Please try this:
$sMailContent .= "\n\n".( ( LANGUAGE == 'pl' ) ? 'Wysłane przez program Quick.Cart' : 'Sent by the Quick.Cart program' );
Zbyszek - StudioStrona.pl |
 2022-02-04 17:55 | Hi,
Thanks. That does look better indeed. Will try this later and will keep you informed.
Guido |
 2022-02-06 12:16 | I can confirm it does display the ENG string now. Thanks again.
Hopefully this wil be added at bugfix page. https://opensolution.org/download/quick.cart-and-quick-cart-ext-bug-fixes.html
Guido |