HI there
Within template "contententry_panel_smilies", I can see:
Code:
{vb:raw smilie.description}
Apparently, this fields is a concatenation of two database fields of table "smilie": title and smilietext.
I scanned the entire VB installation for smilie.description on order to find the code where this field is being assembled: without success.
Also, setting:
Code:
{vb:raw smilie.description}
to
Code:
{vb:raw smilie.title}
did not work.
My second issue:
Within template "contententry_panel_smilies", I can see:
Code:
<vb:each from="smilieInfo.previewSmilies"
Where is previewSmilies being set?
I would like alter the number of smilies being shown.
I have tried to remove the code fealing with the previewSmilies-code so that in any case the following from-loop is executed:
Code:
<vb:each from="smilieInfo.categories"
But this did not work.
So I guess my question is where smilieInfo.previewSmilies and smilieInfo.categories are being initialized.