Avatar

R_J

Admin
  • Re: Show Vanilla Avatar in Wordpress

    Looking at that, it shouldn't be too hard. It basically is the example from the plugin API page added with only very few lines of code (beginning at the inline comment in the final if condition)… (View Post)
  • Re: New Plugin

    Given that you have quite a lot of extra fields for a review, I would create an extra table for that fields. This should get you going (code is untested!), but it is missing some very important parts… (View Post)
  • Re: New Plugin

    Example 4: Basically the same as the last one, but this time, you can use your own view, although you reuse the discussion method. // Create a new method which is available at /post/review. public fu… (View Post)
  • Re: New Plugin

    Example 3: This is a little advanced and would require further tweaking. But it shows you how you can reuse Vanilla. // Create a new method which is available at /post/review. public function postCon… (View Post)
  • Re: New Plugin

    Example 2: Add a form field and write information to discussions "meta data column Attributes": Some tables have a column "Attributes" with serialized information. You can use thi… (View Post)