Changeset 3225611
- Timestamp:
- 01/20/2025 01:12:49 PM (14 months ago)
- Location:
- dynamic-user-directory/trunk
- Files:
-
- 3 edited
-
dynamic-user-directory.php (modified) (1 diff)
-
includes/admin.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-user-directory/trunk/dynamic-user-directory.php
r3158437 r3225611 3 3 * Plugin URI: http://sgcustomwebsolutions.com 4 4 * 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. 15 * Version: 2.2 6 6 * Author: Sarah Giles 7 7 * Author URI: http://sgcustomwebsolutions.com -
dynamic-user-directory/trunk/includes/admin.php
r3131189 r3225611 366 366 'dud_export_performance' => '', 367 367 'dud_export_file_prefix' => '', 368 'dud_export_dynamic_csv' => '', 368 369 'ud_date_registered' => '', 369 370 'ud_date_registered_format' => '', … … 1595 1596 </tr> 1596 1597 <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> 1597 1608 <td><b>Export File Prefix</b></td> 1598 1609 <td><input style="width:331px;" type="text" maxlength="150" id="dud_export_file_prefix" name="<?php echo $dud_option_name;?>[dud_export_file_prefix]" … … 1646 1657 ? "SELECTED" : ""; ?>>Hide</OPTION> 1647 1658 </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> 1649 1660 <td></td> 1650 1661 </tr> … … 1664 1675 value="1" <?php if(!empty($dud_options['dud_export_performance'])) { checked( '1', $dud_options['dud_export_performance'] ); } ?> /> 1665 1676 </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> 1667 1678 <td></td> 1668 1679 </tr> -
dynamic-user-directory/trunk/readme.txt
r3158437 r3225611 5 5 Tags: 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 6 6 Requires at least: 3.0.1 7 Tested up to: 6. 6.28 Stable tag: 2. 17 Tested up to: 6.7.1 8 Stable tag: 2.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 98 98 == Changelog == 99 99 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 100 105 = 2.1 = 101 106 - Released 9/27/24
Note: See TracChangeset
for help on using the changeset viewer.