v. 1.5.6.4
We have text field options for our products.
When it is added to the cart, it is cutting of the text field at 20 characters.
How do I increase it so that it's not cut off when it gets to the cart?
thx!
catalog/controller/checkout/cart.php
either change the number from 20 to a higher number
or to dispay full length, change to
Code: Select all
'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
or to dispay full length, change to
Code: Select all
'value' => $value
Who is online
Users browsing this forum: Amazon [Bot] and 74 guests