Reputation: 1371
I run an e-commerce store (on OpenCart) and use both PayPal Standard and PayPal Express Checkout as payment methods.
When customers go on PayPal Order Summary to pay for the products, however, they are unable to see the full product details, as those are being cut:
Example image: http://s21.postimg.org/y25eelk1j/Capture.jpg
As you can see, the item description gets cut over a defined characters limit, whereas, customers have requested to see the complete text.
How could that be achieved (in OpenCart or in theory, at least)? Thanks!
Upvotes: 2
Views: 582
Reputation: 15151
Open catalog/controller/payment/pp_standard.php
and find this code
'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
change the two 20
values to a higher value of your choosing and save
Upvotes: 2