Bleistivt
ModeratorBleistivt Moderator
Reactions
-
Re: Gdn_Form - Associative Arrays?
The DiscussionPolls plugin does this using a non-associative array: https://github.com/hgtonight/Plugin-DiscussionPolls/blob/master/views/questions.php#L39 https://github.com/hgtonight/Plugin-Discuss… (View Post)3 -
Re: Redundant User Queries...
Did you verify this using the Debugger? All important models implement a memory cache: Gdn::userModel()->getID(5)Gdn::userModel()->getID(5)Gdn::userModel()->getIDs([5])... The above will onl… (View Post)2 -
Re: Google Tag Manager - Track All Registrations with Google Analytics
This is probably the cleanest suggestion. It covers all registrations. If you need to redirect to a page, I would stash a parameter in the users session on the AfterRegister event: Gdn::session()->… (View Post)2 -
Re: Google Tag Manager - Track All Registrations with Google Analytics
Every user account is registrated through UserModel::register, so you can use the UserModel_AfterRegisterevent to cover all cases. (View Post)2 -
Re: Insert some Buttons in Bootstrap Theme
Adding the CSS class Button to an element should make it look like a standard button. (View Post)2