Hi,
I'd like to show all the content in the description of the item in the filter page and not to trim it, is there a way to do it?
Do not trim the content
Hi,
You can open the file: root/plugins/jamegafilter/content/helper.php
At approx line 200, you will see this function:
public function getDesc($desc) {
$length = 20;
$desc = strip_tags($desc);
$exp = explode(' ', $desc);
$result = '';
foreach ($exp as $key => $value) {
if ($key > $length) {
break;
}
$result .= $value . ' ';
}
return $result;
}
change the variable: $length = 20; to $length = 20000; or value which suits your need.
Regards