hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: how to tranlsate some kind of text
This definitely looks like a bug. Plugin patch: public function DiscussionController_Render_Before($Sender) { $Sender->AddDefinition('ConfirmDeleteCommentHeading', T('ConfirmDeleteC… (View Post)1 -
Re: Can't login directly to vanilla with Wordpress account and vice versa
I just wanted to add that setting $Configuration['Garden']['Registration']['Method'] = 'Connect'; in your /conf/config.php file should forward any sign in atte… (View Post)1 -
Re: Is there a way to make a user account undeletable?
Make a plugin. Add a column to the user table called 'Indelible'. Tiny int 1 is fine. Default to 0. Check this on delete. public function UserController_BeforeUserDelete_Handler($Sender) { … (View Post)2 -
Re: can port to Vanilla 2?
@macari Sub-categories exist out of the box in Vanilla 2.1. (View Post)1 -
Re: Can't login directly to vanilla with Wordpress account and vice versa
Redirect the signout from Vanilla to your WP logout. Or vice versa. You can change what URL is used for the sign-in, sign-out, and register links with the following configuration options: $Configurat… (View Post)2
