I found two Values, related to this:
oc-2.1.0.2\upload\catalog\controller\account\order.php
Code: Select all
$option_data[] = array(
'name' => $option['name'],
'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
);
oc-2.1.0.2\upload\catalog\controller\checkout\confirm.php
Code: Select all
$option_data[] = array(
'name' => $option['name'],
'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
);
The routine means, if
more than 20 Characters exist, then,
cut by 20 and
add two dot's:
..
So,try to make
($value, 0, 20) to be
($value, 0, 100) or so, clean all Cache, and try again !
And if it still not works, then, I possibly just overlooked another similar Code..., somewhere!
It could be coded simpler, without a Limit, but Be aware, too much Content could break your Invoice Layout,
and make it look real ugly!
I cannot test it, I use no OC-2, sorry!
Good Luck!
Ernie