ternstyle
Forum Replies Created
-
Forum: Plugins
In reply to: [Members List Plugin] Email & websites hyperlinked?Users had a lot of issues with the mark-up editor in the past. As a result, we removed it. We encourage style changes to be done via CSS.
The FREE version does not presently offer hyperlinked websites and email addresses.
Forum: Plugins
In reply to: [Members List Plugin] MySQL Errors after upgradeGlad that helped!
Forum: Plugins
In reply to: [Members List Plugin] Automatically add new usersLaura, the latest version of the plugin requires a list to be specified. In the FREE version of the plugin there is no way to have new users added automatically. You do have the capability of adding members to a list when editing a member’s profile.
Forum: Plugins
In reply to: [Members List Plugin] Unable to deleteIn the latest version it should purge any old settings which would prevent deletion.
Forum: Plugins
In reply to: [Members List Plugin] MySQL Errors after upgradeTry changing line 643 of /class/members.php from this:
return mysql_real_escape_string($s);
to this:
return $s;
Forum: Plugins
In reply to: [Members List Plugin] No “Edit Members” option showingBecky, the latest version of the plugin no longer has a default list. You need to create a list to display members and add shortcode that specifies the list you wish displayed. This means the hide members functionality is no longer necessary because members are added to specific lists and not a default list.
Forum: Plugins
In reply to: [Members List Plugin] Updating causes site to break – Error 500What version of PHP are you using? The plugin as well as WordPress require version 5.6 or greater.
Forum: Plugins
In reply to: [Members List Plugin] Unable to deleteDoes this issue persist for you in version 4.0.91?
The latest version of the plugin should fix these issues.
The issue is that the latest version of the plugin is drastically different from the older version. Therefore, all lists, display fields, sort, and search fields need to be deleted and recreated from scratch.
It’s not ideal but the newest version is superior.
Forum: Plugins
In reply to: [Members List Plugin] Change Display Fields not working after 4.0.5 UpdateThe issue is that the latest version of the plugin is drastically different from the older version. Therefore, all lists, display fields, sort, and search fields need to be deleted and recreated from scratch. You’ll need to delete any of the fields that are already present to add new ones.
It’s not ideal but the newest version is superior.
Forum: Plugins
In reply to: [Members List Plugin] Worked for years – now this error message.The issue is that the latest version of the plugin is drastically different from the older version. Therefore, all lists, display fields, sort, and search fields need to be deleted and recreated from scratch.
It’s not ideal but the newest version is superior.
Forum: Plugins
In reply to: [Members List Plugin] Illegal String Offset WarningThis should be resolved in the latest version of the plugin. The issues though is that the latest version of the plugin is drastically different from the older version. Therefore, all lists, display fields, sort, and search fields need to be deleted and recreated from scratch.
It’s not ideal but the newest version is superior.
Forum: Plugins
In reply to: [Members List Plugin] Registration Date FormatYou’re welcome.
Forum: Plugins
In reply to: [Members List Plugin] Registration Date FormatMy fault. The function itself begins on line 419. What you need to do is add another “elseif” statement checking for the date and rendering it according to your specifications.
like this code:
elseif($v['name'] == 'user_email') { $s .= "\n <a href='mailto:".$u->$v['name']."'>".str_replace('%value%',$u->$v['name'],$v['markup']).'</a>'; continue; }You’ll need to create another statement like that that checks for “user_registered” and adds to the string variable $s the date as you’d like it.