Plugin Directory

Changeset 2505991


Ignore:
Timestamp:
03/30/2021 01:46:38 PM (5 years ago)
Author:
Sarah_Dev
Message:

1.6.2

  • Released 3/30/21
  • Fixed: Hyperlinks (email and other urls) were not clickable in the directory listing after updating to DUD 1.6.1.
Location:
dynamic-user-directory/trunk
Files:
3 edited

Legend:

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

    r2501246 r2505991  
    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.6.1
     5* Version: 1.6.2
    66* Author: Sarah Giles
    77* Author URI: http://sgcustomwebsolutions.com
  • dynamic-user-directory/trunk/includes/core.php

    r2501246 r2505991  
    13921392                    if(!empty($ud_email_lbl)) $ud_email_lbl = "<strong>" . $ud_email_lbl . "</strong> ";
    13931393                                       
    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";
    13951395                    $line_cnt++;
    13961396                }
     
    14021402                    if(!empty($ud_website_lbl)) $user_website = "<strong>" . $ud_webiste_lbl . "</strong> " . $user_website;
    14031403                       
    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";   
    14051405                    $line_cnt++;
    14061406                }
     
    14331433                    $social_flds = format_social_links($social_flds);
    14341434                   
    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;'>";
    14361436                   
    14371437                    if(!empty($social_flds[0]))
     
    14811481                        {
    14821482                            $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";
    14841484                            $has_label = true;
    14851485                           
     
    14961496                            {
    14971497                                $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 . "'>";
    14991499                            }
    15001500                           
  • dynamic-user-directory/trunk/readme.txt

    r2501246 r2505991  
    66Requires at least: 3.0.1
    77Tested up to: 5.7
    8 Stable tag: 1.6.1
     8Stable tag: 1.6.2
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    439439- 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.
    440440- 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.