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: Change the order of reactions and people that reacted
you could change the After to Before in Last edited plugin e.g. in class.lastedited.plugin.php public function DiscussionController_BeforeDiscussionBody_Handler($Sender) { $this->DrawEdited($Sende… (View Post)1 -
Re: Custom Forms In Vanilla
$Session = Gdn::Session();if ($Session->IsValid() ) {$Name = $Session->User->Name;$EmailAddress = $Session->User->Email;} else {return; // exit if not a valid user.} should be at the t… (View Post)2 -
Re: Messages Feature Request - only users not logged in to view
yes, that solution by anonymoose, is a very clean one and perhaps the best. especially if you re-use the pocket name. then you only have to make change in tpl file once. the "Casual" could … (View Post)2 -
Re: Messages Feature Request - only users not logged in to view
another way to do it is write a plugin that adds css to to certain message classes so choose "Casual" in the messages dashboard. e.g. hide "Casual Messages" for logged in users pl… (View Post)2 -
Re: Who can I change the background and font color of category heading as shown on the pic?
put this in a DropColor plugin plugins/DropColor/default.php <?php if (!defined('APPLICATION')) exit();// Define the plugin:$PluginInfo['DropColor'] = array( 'Name' => 'Drop Color', 'Descriptio… (View Post)7
