hgtonight
MVPhgtonight MVP
This is an activity!
Reactions
-
Re: It's not possible to register anymore after upgradding to 2.2 (recaptcha issue?)
Add the following to /conf/config.php: $Configuration['Garden']['Registration']['Method'] = 'Basic'; (View Post)1 -
Re: Using a variable defined in controller inside a view
Welcome to the community! There is a greater separation between controllers and views. Use the data methods to access information. In the controller: $this->setData('Key', 'value'); In the view: $… (View Post)1 -
Re: How to give a badge depending on the registration date ?
You need to run /utility/structure as there is now a Sort column. (View Post)1 -
Re: Inbox Panel : Bug with Vanilla 2.2
You can undefine permissions via the permission model. In your plugin, add a setup method and a structure method. Example: public function setup() { $this->structure();}public function structure()… (View Post)2 -
Re: How to create custom event hooks?
This is not required as the PhpMailer is a public member of the Gdn_Email class which is sent as the $Sender object. Sorry for misunderstanding you. gdn_email_sendMail_handler($sender) This will work… (View Post)3
