hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: how to sort the span elements in meta
You never, ever, modify core files unless you are comfortable maintaining that forked file. Copy the entirety of the writeDiscussion function from /applications/vanilla/views/discussions/helper_funct… (View Post)4 -
Re: How to limit usernames to just letters, numbers & underscores? (like Twitter)
The regex you are looking for is: [A-z_] The length restriction is: {3,15} So you put in your /conf/config.php file: $Configuration['Garden']['User']['ValidationRegex'] = '[A-z_]';$Configuration['Gar… (View Post)1 -
Re: Plugin Resolved : Glyphicon
They have the code in there to generate a sprite but they don't use an existing sprite code. Modify line 163 of class.resolved.plugin.php to be: echo ' '.Anchor(Sprite('SpUnresolved', 'SpBan Sprite')… (View Post)1 -
Re: Plugin Resolved : Glyphicon
Bootstrap uses FontAwesome 4.2.0. You can use any icon in the font. Here is a link to the CSS classes that were available then: https://github.com/FortAwesome/Font-Awesome/blob/9868306c256ac149d9b7b8… (View Post)3 -
Re: Addon directory improvements
@vrijvlinder I found the issue and submitted a pull request with a fix. Nice find. (View Post)1
