Bob van der Valk Posted October 4, 2019 Share Posted October 4, 2019 (edited) So why is the field length after the 'update' 4.1.0 reduced to 100 characters? I am at the point of launching a B2B system and because of this 'update' my shipping info in the shopping basket is mostly gone. It was a very good place to put it. No, it was the very best place to put it but not anymore. The possibilities of this module are extended I see but the function itself , giving info to the customer, is very much reduced. Thank you for that. I am more scared of Prestashop upgrades than of virusses and hackers. Edited October 4, 2019 by Bob van der Valk (see edit history) Link to comment Share on other sites More sharing options...
Bob van der Valk Posted October 4, 2019 Author Share Posted October 4, 2019 (edited) I found the 100 character restriction in /modules/blockreassurance/views/js/back.js and changed it to 500. My text is visible again. // Tab Content : Edit : MaxLength $(document).on('keyup keydown', '.show-rea-block.active .content_by_lang input[type="text"], .show-rea-block.active .content_by_lang textarea', function () { var maxLength = 500; var val = $(this).val(); var valLength = val.length; if (val.length > maxLength) { $(this).val(val.substring(0, maxLength - 1)); valLength = $(this).val().length; } if ($(this).is('input:text')) { $('.limit_text:visible').text(valLength); } else { $('.limit_description:visible').text(valLength); } }); Edited October 4, 2019 by Bob van der Valk (see edit history) Link to comment Share on other sites More sharing options...
ukbaz Posted October 1, 2021 Share Posted October 1, 2021 Tried this in v1.7.7.4 and characters still getting truncated - is there a later fix for this? Link to comment Share on other sites More sharing options...
BGUERBET Posted June 12, 2023 Share Posted June 12, 2023 ??? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now