Plugin Directory

Changeset 2325979


Ignore:
Timestamp:
06/17/2020 04:49:36 PM (6 years ago)
Author:
Sarah_Dev
Message:

1.5.8

  • Released 6/17/20
  • Successfully tested against WordPress 5.4.2
  • New Feature: Added a new MemberPress checkbox on the DUD settings page for the Exclude User Filter add-on: "Show users if they have at least one subscription that is NOT selected for hiding." This lets you show users with multiple subscriptions if at least one of those subscriptions should be shown.
Location:
dynamic-user-directory/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dynamic-user-directory/trunk/dynamic-user-directory.php

    r2314663 r2325979  
    33* Plugin URI: http://sgcustomwebsolutions.com
    44* Description: Creates an alphabetically sorted user directory that will format and display specified user meta data such as name, address, and email.
    5 * Version: 1.5.7
     5* Version: 1.5.8
    66* Author: Sarah Giles
    77* Author URI: http://sgcustomwebsolutions.com
  • dynamic-user-directory/trunk/includes/admin.php

    r2314663 r2325979  
    342342        'ud_no_users_found_err' => '',
    343343        'ud_err_msg_font_size' => '',
    344         'ud_filter_fld_performance' => ''
     344        'ud_filter_fld_performance' => '',
     345        'ud_mp_show_multiple' => ''
    345346    );
    346347
     
    853854    <?php } catch(Exception $e) {$err = true;} //do nothing ?>
    854855   
     856    <tr id="mp_multiple_memberships">
     857        <td><b>Show users if they have at least one subscription that is NOT selected for hiding</b></td>
     858        <td><input name="<?php echo $dud_option_name;?>[ud_mp_show_multiple]" id="ud_mp_show_multiple" type="checkbox"
     859                   value="1" <?php if(!empty($dud_options['ud_mp_show_multiple'])) { checked( '1', $dud_options['ud_mp_show_multiple'] ); } ?> /></td>
     860        <td>This will allow you to show members with multiple subscriptions if they have at least one subscription that is not selected for hiding. There is no need to check this box unless you have selected at least one subscription for hiding in the listbox above.</td>
     861        <td></td>
     862     </tr> 
     863     
    855864    <tr id="mp_hide_status">
    856865        <td><b>Hide User if Subscription has the Following Status(es):</b></td>
  • dynamic-user-directory/trunk/readme.txt

    r2314663 r2325979  
    55Tags: user directory, MemberPress, BuddyPress, Cimy User Extra Fields, user registration, user meta fields, profile fields, member directory, website directory, directory, user listing, users, members, user profile, user profiles
    66Requires at least: 3.0.1
    7 Tested up to: 5.4.1
    8 Stable tag: 1.5.7
     7Tested up to: 5.4.2
     8Stable tag: 1.5.8
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    405405- New Feature: Added the "Image" option to the Meta Field Formatting options dropdown. This should be a filepath which DUD will then render via the IMG tag. This tag will include the css class hook "dud_img" which may be used to style the image.
    406406- New Feature: Added a "Performance Improvement" checkbox to the Exclude User Filter add-on settings. This will speed up page load time for directories with a high volume (1000+) of users. 
     407
     408= 1.5.8 =
     409- Released 6/17/20
     410- Successfully tested against WordPress 5.4.2
     411- New Feature: Added a new MemberPress checkbox on the DUD settings page for the Exclude User Filter add-on: "Show users if they have at least one subscription that is NOT selected for hiding." This lets you show users with multiple subscriptions if at least one of those subscriptions should be shown.
Note: See TracChangeset for help on using the changeset viewer.