Changeset 2505991
- Timestamp:
- 03/30/2021 01:46:38 PM (5 years ago)
- Location:
- dynamic-user-directory/trunk
- Files:
-
- 3 edited
-
dynamic-user-directory.php (modified) (1 diff)
-
includes/core.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dynamic-user-directory/trunk/dynamic-user-directory.php
r2501246 r2505991 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: 1.6. 15 * Version: 1.6.2 6 6 * Author: Sarah Giles 7 7 * Author URI: http://sgcustomwebsolutions.com -
dynamic-user-directory/trunk/includes/core.php
r2501246 r2505991 1392 1392 if(!empty($ud_email_lbl)) $ud_email_lbl = "<strong>" . $ud_email_lbl . "</strong> "; 1393 1393 1394 $user_contact_info .= "\t\t\t<div class='dud_field_email'>$ud_email_lbl <a href=\"mailto:" . $user_email . "\" target=\"_top\">" . apply_filters('dud_set_user_email_display', $user_email, $user_id) . "</a></div>\n";1394 $user_contact_info .= "\t\t\t<div style='pointer-events:all;' class='dud_field_email'>$ud_email_lbl <a href=\"mailto:" . $user_email . "\" target=\"_top\">" . apply_filters('dud_set_user_email_display', $user_email, $user_id) . "</a></div>\n"; 1395 1395 $line_cnt++; 1396 1396 } … … 1402 1402 if(!empty($ud_website_lbl)) $user_website = "<strong>" . $ud_webiste_lbl . "</strong> " . $user_website; 1403 1403 1404 $user_contact_info .= "\t\t\t<div class='dud_field_website'><a href=\"" . $user_website . "\">" . $user_website . "</a></div>\n";1404 $user_contact_info .= "\t\t\t<div style='pointer-events:all;' class='dud_field_website'><a href=\"" . $user_website . "\">" . $user_website . "</a></div>\n"; 1405 1405 $line_cnt++; 1406 1406 } … … 1433 1433 $social_flds = format_social_links($social_flds); 1434 1434 1435 $social_icons .= "\t\t\t<div class='dud_field_social' style='font-size:" . $ud_icon_size . "px !important;'>";1435 $social_icons .= "\t\t\t<div style='pointer-events:all;' class='dud_field_social' style='font-size:" . $ud_icon_size . "px !important;'>"; 1436 1436 1437 1437 if(!empty($social_flds[0])) … … 1481 1481 { 1482 1482 $css_line_cnt++; 1483 $user_contact_info .= "\t\t\t<div class='dud_line_" . $css_line_cnt . "'><span class='dud_label'><b>" . $ud_mflds['label'] . "</b></span>\n";1483 $user_contact_info .= "\t\t\t<div style='pointer-events:all;' class='dud_line_" . $css_line_cnt . "'><span class='dud_label'><b>" . $ud_mflds['label'] . "</b></span>\n"; 1484 1484 $has_label = true; 1485 1485 … … 1496 1496 { 1497 1497 $css_line_cnt++; 1498 $dud_line = "<div class='dud_line_" . $css_line_cnt . "'>";1498 $dud_line = "<div style='pointer-events:all;' class='dud_line_" . $css_line_cnt . "'>"; 1499 1499 } 1500 1500 -
dynamic-user-directory/trunk/readme.txt
r2501246 r2505991 6 6 Requires at least: 3.0.1 7 7 Tested up to: 5.7 8 Stable tag: 1.6. 18 Stable tag: 1.6.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 439 439 - New Feature: You can now show the user's date registered(autogenerated by wordpress and stored in the wp_users table). The new checkbox is located in the "Meta Field Settings" section. 440 440 - New Feature: You may optionally enter a label for the wordpress profile email address, website, and date registered fields. This is also located in the "Meta Field Settings" section. 441 442 = 1.6.2 = 443 - Released 3/30/21 444 - Fixed: Hyperlinks (email and other urls) were not clickable in the directory listing after updating to DUD 1.6.1.
Note: See TracChangeset
for help on using the changeset viewer.