In the order email there is an item "paymentName" and "shipmentName" which consists of two fields ... name and description. Both fields are inserted in close succession, without gaps and further optical separation. Everything happens in the core VM and cannot be modified in the template.
I suggest separating the fields with a space and enclosing the description in parentheses so that it is clear what the name is and what the description is.
Thank you and good luck.
http://forum.virtuemart.net/index.php?topic=147766.msg526988#msg526988
Quote from: GJC Web Design on January 13, 2022, 15:37:43 PM
http://forum.virtuemart.net/index.php?topic=147766.msg526988#msg526988
This is not the solution.
How would you know? Do u know what is being discussed?
Encapsulate with htmltags, for example:
<span class="vmpayment_info">Avsluta köpet genom att betala in köpesumman till det angivna bankgironumret.</span>
Jörgen @ Kreativ Fotografi
a lot of mail client delete div or span
Then maybe try this
if ($this->orderDetails['paymentName']) {
str_replace('spaceChar', ' ', $this->orderDetails['paymentName']);
echo $this->orderDetails['paymentName'];
}
'spaceChar' is whatever you want to use to replace with ' ' or some other string..
Put this in your override for invoice and mail etc. This is a temporary fix the final fix should be done in the core.
Jörgen