Page 1 of 1

Increasing maximum characters in option and in cart

Posted: Fri Oct 31, 2014 4:23 am
by cartgirl
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!

Re: Increasing maximum characters in option and in cart

Posted: Fri Oct 31, 2014 7:50 am
by uksitebuilder
catalog/controller/checkout/cart.php

Code: Select all

						'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
either change the number from 20 to a higher number

or to dispay full length, change to

Code: Select all

						'value' => $value

Re: Increasing maximum characters in option and in cart

Posted: Mon Nov 03, 2014 6:05 am
by cartgirl
thanks :)