Todd
Vanilla StaffTodd Vanilla Staff
Reactions
-
Re: Security Update: Vanilla 2.0.18.9
@50sQuiff the transient key should offer the protection, but since it is in the url we want to add additional protection. In more current versions of Vanilla we've been making sure that most operatio… (View Post)3 -
How do I change the html of a page in my theme?
A lot of people ask questions of the sort "how do I change this text" or "that html?" Most all of the html that Vanilla displayed is stored in views and the beauty of these views … (View Post)1 -
Re: settingsURL + displaying a plugin settings page
I'm going to recommend you give something a try that is new in 2.0.18 called the ConfigurationModule. It helps you put together simple configuration pages. Here is an example from our Akismet plugin:… (View Post)2 -
Re: [Solved] How do I create a unique header for each category in Vanilla?
You can add an extra column to the GDN_Category table. Then you can grab $Sender->Data('Category.YourField') instead of Description. To add the column in code you would do something like:Gdn::Stru… (View Post)1 -
Re: [Solved] How do I create a unique header for each category in Vanilla?
In the vanillaforums.org theme we put the following in our theme hooks file:public function CategoriesController_AfterBreadcrumbs_Handler($Sender, $Args) { $Description = $Sender->Data('Category.D… (View Post)1