Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › Cart/Basket/Checkout Product Options – Image meta titles shortened with '…' › Reply To: Cart/Basket/Checkout Product Options – Image meta titles shortened with '…'
August 19, 2018 at 5:30 am
#9229
Keymaster
Hi,
well we have fixed this issue in version 13.5 and it will be released in couple of days, you can use following code once it’s release
add_filter('ppom_trim_file_maxchar', 'add_filename_limit', 99, 1);
function add_filename_limit( $char_limit ) {
$char_limit = 50;
return $char_limit;
}