Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
How to add extra class to the particular comment?
steam
✭
Hi,
Someone knows how to add my style class to a particular comment from the plugin ?
Like on the screen:
Invoking an event?
DiscussionController_BeforeComment... ?
Thanks
0
Best Answer
-
R_J Admin
public function discussionController_beforeCommentDisplay_handler($sender, $args) { if ($args['Comment'] whatever) { $args['CssClass'] .= ' MyExtraClass'; // Could also be: // &$args['CssClass'] .= ' MyExtraClass'; // Never sure about that...
3
Answers
It worked, thanks