Plugin Directory

Changeset 3225611


Ignore:
Timestamp:
01/20/2025 01:12:49 PM (14 months ago)
Author:
Sarah_Dev
Message:

2.2

  • Released 1/20/25
  • Successfully tested against WordPress 6.7.1
  • Added new "Dynamically Generate CSV Export File" setting for the Directory Export Add-On
Location:
dynamic-user-directory/trunk
Files:
3 edited

Legend:

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

    r3158437 r3225611  
    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: 2.1
     5* Version: 2.2
    66* Author: Sarah Giles
    77* Author URI: http://sgcustomwebsolutions.com
  • dynamic-user-directory/trunk/includes/admin.php

    r3131189 r3225611  
    366366        'dud_export_performance' => '',
    367367        'dud_export_file_prefix' => '',
     368        'dud_export_dynamic_csv' => '',
    368369        'ud_date_registered' => '',
    369370        'ud_date_registered_format' => '',
     
    15951596        </tr>
    15961597        <tr>
     1598            <td><b>Dynamically Generate CSV Export File</b></td>
     1599            <td><select class="dd-menu-no-chk-box-width" name="<?php echo $dud_option_name;?>[dud_export_dynamic_csv]" id="dud_export_dynamic_csv">
     1600                        <OPTION value="off">Off</OPTION>
     1601                        <OPTION value="on" <?php echo (!empty($dud_options['dud_export_dynamic_csv']) && $dud_options['dud_export_dynamic_csv'] === "on")
     1602                            ? "SELECTED" : ""; ?>>On</OPTION>                       
     1603                </select> </td>
     1604            <td>Instead of temporarily saving CSV export files on your local server, turn this on to dynamically generate the csv file and send it straight to the browser. This is more secure and will eliminate overhead on your server. IMPORTANT: This setting is *ONLY* guaranteed to work if your directory page has been created using one of the standard WordPress editors (either Gutenberg or Classic). Problems with the export may occur if used with a page created by a third-party editor.</td>
     1605            <td></td>
     1606         </tr>
     1607        <tr>
    15971608            <td><b>Export File Prefix</b></td>
    15981609            <td><input style="width:331px;" type="text" maxlength="150" id="dud_export_file_prefix" name="<?php echo $dud_option_name;?>[dud_export_file_prefix]"
     
    16461657                            ? "SELECTED" : ""; ?>>Hide</OPTION>                         
    16471658                </select> </td>
    1648             <td>Show the directory labels in your export file. These will appear horizontally across the top row.</td>
     1659            <td>Show the directory field labels in your export file. These will appear horizontally across the top row.</td>
    16491660            <td></td>
    16501661         </tr>
     
    16641675               value="1" <?php if(!empty($dud_options['dud_export_performance'])) { checked( '1', $dud_options['dud_export_performance'] ); } ?> />
    16651676            </td>
    1666             <td>Check this box if you are experiencing slow page load time or a high number of export files are appearing in your root directory. Instead of auto-generating the export file each time the page loads, an "export" link will be shown that must be clicked before the export file is created. When the page refreshes, the "download" link will then be shown.</td>
     1677            <td>Check this box if you are experiencing slow page load time or a high number of export files are appearing in your root directory. Instead of auto-generating the export file each time the page loads, the "Directory Export Link Text" (the field below) will be shown as a link that must be clicked to generate the export file. Then when the page refreshes, the "Directory Download Link Text" or "Search Results Download Link Text" will be shown as a link that must be clicked to trigger the download. This setting ONLY applies if the "Dynamically Generate CSV Export File" setting above is turned off.</td>
    16671678            <td></td>
    16681679        </tr>
  • dynamic-user-directory/trunk/readme.txt

    r3158437 r3225611  
    55Tags: user directory, MemberPress, BuddyPress, member directory, 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: 6.6.2
    8 Stable tag: 2.1
     7Tested up to: 6.7.1
     8Stable tag: 2.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9898== Changelog ==
    9999
     100= 2.2 =
     101- Released 1/20/25
     102- Successfully tested against WordPress 6.7.1
     103- Added new "Dynamically Generate CSV Export File" setting for the Directory Export Add-On
     104
    100105= 2.1 =
    101106- Released 9/27/24
Note: See TracChangeset for help on using the changeset viewer.