Bleistivt
ModeratorBleistivt Moderator
Reactions
-
Re: Forced profile update
I would just redirect to the edit profile page on signin - untested, as I'm not at home: Base_AfterSignIn_Handler($Sender) { $Session = Gdn::Session(); $Meta = Gdn::UserMetaModel()->GetUserMeta($S… (View Post)3 -
Re: how to remove "All discussions" link Categories
Just do it with css ul.PanelCategories li:first-child { display:none;} (View Post)3 -
Re: MCServer addon screen is blank
You need to open the default.php in the plugin folder and replace all occurences of &$Sender with $Sender as this wasn't updated for 2.1 (View Post)2 -
Re: IndexPhotos 1.1 dont want to show on mobile
Add if (IsMobile()) return; right after protected function DisplayPhoto($Sender) { (line 46) (View Post)1 -
Re: IndexPhotos 1.1 dont want to show on mobile
Yes, forgot the CSS file needs to be removed, too. Also add if (IsMobile()) return; after line 18 and 25 (which will then be 26) (View Post)1