Hello,
I'm trying to remove the description from slider and let only the title there. I did what you said at:
https://vborg.vbsupport.ru/showpost....6&postcount=45
1. File packages\vbcms\widget\cmsfcs.php
2. After:
Code:
$getarticles['preview'] = strip_quotes($getarticles['preview']);
$getarticles['preview'] = htmlspecialchars_uni(fetch_censored_text(
fetch_trimmed_title(strip_bbcode($getarticles['preview'], false, true, true, true),
100)));
I added:
Code:
$getarticles['title'] = fetch_trimmed_title($getarticles['title'], 30);
but this only trims the title to 30 characters and show again the description below. What I want is to show the full title and nothing from description. Where on heck the title is stored? Is it part of pagetext in table cms_article?
Thank you Chris