Show Likes

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

1
The Pub / Re: Wedge&PHP 7
live627 « on August 29th, 2023, 04:41 PM »
Quote from Kian on July 27th, 2023, 09:54 AM
, I'm thinking about migrating to another forum solution but did not find any working export tool.
I think the only converter away is to Elkarte. I have absolutely no idea if it still works.
2
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);
  }
3
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.


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 / [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

6
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
7
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
8
Archived fixes / Credits page
live627 « on May 11th, 2014, 02:03 AM »
It has a serious drinking problem.

See attachment..
10
Archived fixes / Re: Ignoring users
live627 « on March 5th, 2014, 05:38 AM »
Bottom right of post, "more"sub-menu... not very obvious.