Show Likes

This section allows you to view all posts where this member received or gave a like to.

1
Bug reports / Possible bug with custom fields
live627 « on February 1st, 2019, 12:54 AM »
  • Create a custom field in the gallery
  • Make it a checklist
  • Make it required
  • Make it searchable
  • Edit an item, don't fill that field
  • Observe errors when saving
Code: [Select]
// Add them to the form
  foreach ($fields as $field)
  {
- if ($field['type'] == 'checkbox')
+ if ($field['type'] == 'checkbox' && empty($field['searchable']))
  $field['value'] = explode(', ', $field['value']);
 
  // Options...
  $value = isset($_POST['custom_field'][$field['id']]) && (is_array($_POST['custom_field'][$field['id']]) || trim($_POST['custom_field'][$field['id']]) != '') ? $_POST['custom_field'][$field['id']] : '';
 
+ // JTR: preparsecode() corrupts the array by converting it to a string.
+ if (isset($_POST['custom_field'][$field['id']]) && !is_array($_POST['custom_field'][$field['id']]))
- preparsecode($value);
+ preparsecode($value);
 
  // Do the value checks
  if ($field['type'] == 'checkbox')
  {
- foreach ($value as $val)
- if (!in_array($val, $field['options']))
- fatal_error(sprintf($txt['aeva_cf_invalid'], $field['name']));
-
  // Nothing set?
  if (empty($value) && $field['required'])
  fatal_error(sprintf($txt['aeva_cf_empty'], $field['name']));
  elseif (empty($value))
  continue;
 
+ foreach ($value as $val)
+ if (!in_array($val, $field['options']))
+ fatal_error(sprintf($txt['aeva_cf_invalid'], $field['name']));
+
  // Set the proper value
  $value = implode(', ', $value);
  }
2
Plugins / Recent Topic Moderation History
live627 « on May 30th, 2013, 09:07 AM »
Allows the user to see a list of moderation actions in topics.


3
Plugins / [Plugin] Awards
live627 « on June 20th, 2012, 08:48 AM »
So, one of my more involved (and complex) plugins is an awards system.

o Multiple categories
o Use AeMe to manage the image, badge, w/e
o Assign multiple awards to members (duh!)
o New profile are to show awards assigned to a member
o List awards in the mini profile next to their post in a topic
o Extend the user menu with a link to show their awards

To be implemented:
o Searchable awards: new item in the search menu drop
o Opt out of an award
o Integrate into the new moderation filters
o Auto award based on post count, added to new membergroup

4
Plugins / [Plugin] Awards
live627 « on June 20th, 2012, 08:48 AM »
So, one of my more involved (and complex) plugins is an awards system.

o Multiple categories
o Use AeMe to manage the image, badge, w/e
o Assign multiple awards to members (duh!)
o New profile are to show awards assigned to a member
o List awards in the mini profile next to their post in a topic
o Extend the user menu with a link to show their awards

To be implemented:
o Searchable awards: new item in the search menu drop
o Opt out of an award
o Integrate into the new moderation filters
o Auto award based on post count, added to new membergroup

5
Plugins / Team List
live627 « on June 21st, 2013, 02:59 AM »

Adds an area that shows all members in specified groups.

Available options:
  • Specify team leaders who will appear first in the list
  • Specify "half" groups which will show names only
  • Show board moderators
  • Show board owners
6
Plugins / PM Auto Respond
live627 « on May 14th, 2014, 09:34 PM »
This plugin functions similar to a vacation responder in that it sends a PM to a user who sent a PM. The message and subject are customisable, so the auto PM can be totally unique.

Depending on certain criteria found in the incoming message, you can create different variations for auto response. This feature is very similar in nature to the PM Rules in SMF 2.

More info + purchase: http://wedge.livemods.net/index.php?action=media;sa=item;in=34
7
Archived fixes / Credits page
live627 « on May 11th, 2014, 02:03 AM »
It has a serious drinking problem.

See attachment..
8
Plugins / Re: Team List
live627 « on June 22nd, 2013, 01:49 AM »
Got user menus running.

9
Plugins / Team List
live627 « on June 21st, 2013, 02:59 AM »

Adds an area that shows all members in specified groups.

Available options:
  • Specify team leaders who will appear first in the list
  • Specify "half" groups which will show names only
  • Show board moderators
  • Show board owners