peregrine
MVPperegrine MVP
Thank you, Bleistivt and Vrijvlinder for letting me transfer ownership of my plugins to you both, You are the only two people I have given permission. over and out of here
Reactions
-
Re: Button Bar - change link to Markdown reference?
you have to modify the plugin or write another plugin to modify the plugin. plugins/ButtonBar/js/buttonbar.js line 334. .html('You can use <b><a href="http://en.wikipedia.org/wiki/… (View Post)1 -
Re: abbreviate usernames in discussions overview so they don't exceed 6 characters (e.g. 'Userna...')
you could strip the special characters period that would be the easiest. can you show an image example? or you would need to keep track of opening and closing quotes. (View Post)1 -
Re: how can I delete my account from vanilla forums?
@422 is not the forum owner, only the creators and programmers of vanilla can do it - Lincoln, Todd, Tim or Mark can do it. I don't even think @underdog can do it. as moderator. Send them a mess… (View Post)1 -
Re: struggling with highlighting correct current menu link
you could add these to the default.php in the addmenu plugin just below public function Base_Render_Before($Sender) { if (($Sender->SelfUrl) == 'categories/all'){ $Sender->Menu->Hi… (View Post)1 -
Re: abbreviate usernames in discussions overview so they don't exceed 6 characters (e.g. 'Userna...')
shorten it up if it finds an ampersand towards the last 5 characters of string. $pos = (strrpos($DiscussionNameShort, '&', -5)); if ($pos > 50) { $DiscussionNameShort = substr($$Disc… (View Post)1
