R_J
AdminR_J Admin
-
Re: Data and parameters in vanilla popup form
You can use the function "stash" from the session class: https://github.com/vanilla/vanilla/blob/master/library/core/class.session.php#L609 But in almost all cases when a UserID is passed a… (View Post)6 -
Re: Shorten Months Displayed (e.g., November to Nov)
It's only a translation task. Set this in your /conf/locale.php: $Definition['Date.DefaultDateTimeFormat'] = '%b %e, %Y %l:%M%p'; See http://php.net/manual/en/function.strfti… (View Post)2 -
Re: How to add extra class to the particular comment?
public function discussionController_beforeCommentDisplay_handler($sender, $args) { if ($args['Comment'] whatever) { $args['CssClass'] .= ' MyExtraClass'; // Could also … (View Post)3 -
Re: How To Remove "edited ...." in Comment head
The "edited" is part of Vanilla and always appears if a comment has been edited. It is a side effect of using the LastEdited plugin, not a part of it: When looking at the source code, you c… (View Post)2 -
Re: Page howtoprofilepage not found for others user.
Well, no bug, but sloppy coded and not enough documented... Take a look at that part of the code: public function profileController_howToProfilePage_create ($sender) { // We have to tell the profile … (View Post)2
