hi,
I solved the problem as follows. The description really doesn't look good without spaces.
go to item.php and change the line
<?php echo osc_item_description(); ?>
to <?php echo nl2br(osc_esc_html(osc_item_description())); ?>
then :
change <?php echo substr(strip_tags(osc_item_description()), 0, 720) . (strlen(strip_tags(osc_item_description())) > 720 ? '...' : ''); ?>
to
<?php
$short_desc = substr(strip_tags(osc_item_description()), 0, 720);
echo nl2br(osc_esc_html($short_desc)) . (strlen(strip_tags(osc_item_description())) > 720 ? '...' : '');
?>
must be ok after changes.
MB thank you for the new osclass upgrade.