Hi,
In the view "product / listing", you have to replace the line:
<?php echo JHTML::_('content.prepare',$this->element->category_description); ?>
By:
<?php echo JHTML::_('content.prepare',substr($this->element->category_description,0,250)); ?>
And add the line:
echo JHTML::_('content.prepare',substr($this->element->category_description,250));
Before:
$html = ob_get_clean();
if(!empty($html)) {
This way the first description will only display the 250 first characters of the description, and the rest of the description will be displayed at the end of the page, after the pagination.
You can change "250" by any other value.