R_J
AdminR_J Admin
-
Re: Import option missing
Please add the following line to the end of the /conf/config.php file to see the import option: $Configuration['Feature']['Import']['Enabled'] = true; (View Post)2 -
Re: ProfileExtender - field lenght
ProfileExtender fields are saved in the UserMeta table. Therefore you couldn't change the column without unwanted side effects. A plugin could catch the UserModel BeforeSave... events and do some val… (View Post)1 -
Re: Override Model method
"Magic methods allow you to create new methods and add them to existing objects." You will need to use events for that. But maybe the approach is not the best. In order to save extra inform… (View Post)1 -
Re: Image resizing for users via the WYSIWYG?
You can find that in the posting settings /vanilla/settings/posting "Enable Upload Limit" must be enabled before the two other boxes appear (View Post)1 -
Re: How to parse smarty tags from a plugin?
Well, I bet you can but that is not efficient. Smarty is made to deal with blocks, sub-templates, can handle logic, etc. But if you really want to go that way, here is what I found out. Vanilla expos… (View Post)2