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: My advanced editor doesn't look like the one on vanillaforums.org
:grin: strange that you are running this version. are you using markdown formatting? it is controlled by this css. .editor-optional-button { display: none !important; } and in class.editor.plugin.php… (View Post)1 -
Re: Unserialize error after 2.0.17 updated to 2.1.11
I suspect you can delete this and it will fix your problem. $Configuration['Garden']['RequiredUpdates'] = 'O:8:"stdClass":1:{s:2:"ok";s:30:"";}'; you can also delete the… (View Post)3 -
Re: Adding a custom module to a theme.
but not necessarily in the module itself! in vanilla 2.1 (and I suspect Vanilla 2.2) if you are talking theme with autoloader in themehooks.. Gdn_Autoloader::RegisterMap(Gdn_Autoloader::MAP_LIBRARY, … (View Post)2 -
Re: Display Unread Post+Comment Count instead of Total Comment Count in category sidebar?
iirc it doesn't keep track of unread post/comments on a per-category basis it would be a major performance killer I would think to try to track this on a category basis. from what I seem to recall it… (View Post)1 -
Re: Display Unread Post+Comment Count instead of Total Comment Count in category sidebar?
you could copy the categories.php to yourtheme/views/modules/categories.php and change echo Anchor(htmlspecialchars($Category->Name).$CountText, CategoryUrl($Category), 'ItemLink'); to if (!$Categ… (View Post)3