Title: LPP_DEV's Replies | WordPress.org

---

# LPP_DEV

  [  ](https://wordpress.org/support/users/lpp_dev/)

 *   [Profile](https://wordpress.org/support/users/lpp_dev/)
 *   [Topics Started](https://wordpress.org/support/users/lpp_dev/topics/)
 *   [Replies Created](https://wordpress.org/support/users/lpp_dev/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/lpp_dev/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/lpp_dev/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/lpp_dev/engagements/)
 *   [Favorites](https://wordpress.org/support/users/lpp_dev/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/lpp_dev/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lpp_dev/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Builder - Create highly converting, mobile friendly marketing popups.] Popup redirect fails on iPads for logged in users](https://wordpress.org/support/topic/popup-redirect-fails-on-ipads-for-logged-in-users/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/popup-redirect-fails-on-ipads-for-logged-in-users/#post-12582735)
 * I have video-taped the process to fail: [https://www.youtube.com/watch?v=gQa-xJ8VrkY](https://www.youtube.com/watch?v=gQa-xJ8VrkY)
 * I am logged in as a subscriber, same as the account I set up for you. Here is
   the start page: [https://vayachtclub.org/sygoos-test/](https://vayachtclub.org/sygoos-test/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Builder - Create highly converting, mobile friendly marketing popups.] Popup redirect fails on iPads for logged in users](https://wordpress.org/support/topic/popup-redirect-fails-on-ipads-for-logged-in-users/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [6 years, 2 months ago](https://wordpress.org/support/topic/popup-redirect-fails-on-ipads-for-logged-in-users/#post-12574226)
 * UN: **sygnoossupportteam**
    PW: **3sTl6qy203=**
 * I have setup a test page: [https://vayachtclub.org/sygoos-test/](https://vayachtclub.org/sygoos-test/)
 * It should redirect you to a page that only Subscribers can see and not log you
   out.
 * Thank you for looking into this!!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Smart Manager - Advanced WooCommerce Bulk Edit & Inventory Management] Pretty useless….](https://wordpress.org/support/topic/pretty-useless-4/)
 *  [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [6 years, 9 months ago](https://wordpress.org/support/topic/pretty-useless-4/#post-11857091)
 * I think the idea is to get the pro version after trying it out in demo mode (
   free mode)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] On success when updating profile](https://wordpress.org/support/topic/on-success-when-updating-profile/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/on-success-when-updating-profile/#post-10926508)
 * **Here is the solution:** [Click here](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/#post-10926498)
   and scroll down.
    -  This reply was modified 7 years, 6 months ago by [LPP_DEV](https://wordpress.org/support/users/lpp_dev/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Admin Notifications when Profile Changes](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/#post-10926498)
 * Ok, there is a very simple solution to this. There is a brilliant Ultimate Member
   hook called ‘um_after_user_updated’. (Click [here](https://docs.ultimatemember.com/article/1038-umafteruserupdated)
   to see more).
 * To implement this hook for notifying when a member has updated their profile 
   make a very simple child theme and add this code to its functions.php file.
 *     ```
       add_action( 'um_after_user_updated', 'my_after_user_updated', 10, 3 );
       function my_after_user_updated( $user_id, $args, $userinfo ) {
               um_fetch_user($user_id);
       	$groupMember = um_user('display_name');
               $groupMmbr_name = um_user('user_login');
       	$loggedIn_user = wp_get_current_user();
               $loggedIn_userEml =  $loggedIn_user->user_email;
               $headers = array('Content-Type: text/html; charset=UTF-8', 'Cc:hbaum@salisburypreschool.org', 'Bcc:webdev@somewebdevdomain.com', 'From:Some Profile Update <do_not_reply@somegroupsitedomain.com>', 'Reply-To:No-reply Email<do_not_reply@somegroupsitedomain.com>');
               wp_mail( 'groupManager@somegroupsitedomain.com', 'The '.$groupMember.'profile was updated.', 'The <b>'.$groupMember.'</b>profile was updated by the user with this email address: '.$loggedIn_userEml.'.  <a href="https://somegroupsitedomain.com/user/'.$groupMmbr_name.'/?profiletab=main&um_action=edit"><b>Click here</b></a> to visit this profile online.<br><br><i style="color:#767676; font-size:11px; text-align:center;"><b>NOTE:</b> you must be logged in first to see this profile.</i>',$headers);
       }
       ```
   
 * That is seriously it. Now whenever someone updates their profile or if an administrator
   updates someone’s profile those administrators above will get an email notifying
   them that someone has changed their profile.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Admin Notifications when Profile Changes](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/#post-10888417)
 * Should the user see a message when their profile has been successfully updated?
    -  This reply was modified 7 years, 6 months ago by [LPP_DEV](https://wordpress.org/support/users/lpp_dev/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Admin Notifications when Profile Changes](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/admin-notifications-when-profile-changes/#post-10871641)
 * Great, thank you. In the meantime I’ll try to tag on an ajax call when profile
   updates are submitted using jQuery to get the job done.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Contact Form 7] CF7 and reCAPTCHA API incompatibility?](https://wordpress.org/support/topic/cf7-and-recaptcha-api-incompatibility/)
 *  [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/cf7-and-recaptcha-api-incompatibility/#post-10632932)
 * I am also having this problem, just started recently. Same as described here 
   but the fix mentioned does not work for me: I am having the same issue as described
   here: [https://wordpress.org/support/topic/recaptcha-cannot-read-property-secret-of-null/](https://wordpress.org/support/topic/recaptcha-cannot-read-property-secret-of-null/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Member Directory is blank](https://wordpress.org/support/topic/member-directory-is-blank/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/member-directory-is-blank/#post-10556028)
 * Ah – I found a fix, similar to your suggestion. The page was not the problem,
   the directory was. I created a new directory and setup the identical settings
   and that worked.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Member Directory is blank](https://wordpress.org/support/topic/member-directory-is-blank/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/member-directory-is-blank/#post-10555965)
 * I also tried the conflict test (above) with this solution. No luck.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Problems restricting access to pages](https://wordpress.org/support/topic/problems-restricting-access-to-pages/)
 *  [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/problems-restricting-access-to-pages/#post-10555939)
 * Is there a resolution to this problem?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Member Directory is blank](https://wordpress.org/support/topic/member-directory-is-blank/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/member-directory-is-blank/#post-10555937)
 * I can see members in the directory when I search, but otherwise, no, this fix
   did not work:(
    -  This reply was modified 7 years, 10 months ago by [LPP_DEV](https://wordpress.org/support/users/lpp_dev/).
    -  This reply was modified 7 years, 10 months ago by [LPP_DEV](https://wordpress.org/support/users/lpp_dev/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Member Directory is blank](https://wordpress.org/support/topic/member-directory-is-blank/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/member-directory-is-blank/#post-10551592)
 * I did the test, no luck, members directory is blank.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Problems restricting access to pages](https://wordpress.org/support/topic/problems-restricting-access-to-pages/)
 *  [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/problems-restricting-access-to-pages/#post-10549097)
 * I am having the same problem, I restricted the registration page because only
   administrators can register a new member. I can open the page when logged out,
   and incognito chrome.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ultimate Member – User Profile, Registration, Login, Member Directory, Content Restriction & Membership Plugin] Member Directory is blank](https://wordpress.org/support/topic/member-directory-is-blank/)
 *  Thread Starter [LPP_DEV](https://wordpress.org/support/users/lpp_dev/)
 * (@lpp_dev)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/member-directory-is-blank/#post-10548115)
 * **Some more details:**
    ### Begin Install Info ###
 * ## Please include this information when posting support requests ##
 * — Site Info —
 * Site URL: [https://salisburypreschool.org](https://salisburypreschool.org)
    Home
   URL: [https://salisburypreschool.org](https://salisburypreschool.org) Multisite:
   No
 * — Hosting Provider —
 * Host: DBH: localhost, SRV: salisburypreschool.org
 * — User Browser —
 * Platform: Windows
    Browser Name: Chrome Browser Version: 67.0.3396.99 User Agent
   String: Mozilla/5.0 (Windows NT 10.0; Wi n64; x64) AppleWebKit/537.36 (KH TML,
   like Gecko) Chrome/67.0.339 6.99 Safari/537.36
 * —- Current User Details —
 * Role: administrator
 * — WordPress Configurations —
 * Version: 4.9.7
    Language: en_US Permalink Structure: /%postname%/ Active Theme:
   Charitas WPL Child (LPP) 1.2.9.1533051038 Page On Front: Home (#474) Page For
   Posts: (#0) ABSPATH: /home/leadmin1/public_html/salisburypreschool/ All Posts/
   Pages: 4 WP Remote Post: wp_remote_post() works WP_DEBUG: Disabled WP Table Prefix:
   Length: 3, Status: Acceptable Memory Limit: 40MB
 * — UM Users Configuration —
 * Default New User Role: 0
    Profile Permalink Base: user_login User Display Name:
   field Force Name to Uppercase: No Redirect author to profile: Yes Enable Members
   Directory: Yes Use Gravatars: No Require a strong password: On Editable primary
   email field in profile view: Off
 * — UM Access Configuration —
 * Panic Key:
    Global Site Access: Site accessible to Everyone Backend Login Screen
   for Guests: No Redirect to alternative login page: Backend Register Screen for
   Guests: No Redirect to alternative register page: Access Control widget for Admins
   only: No Enable the Reset Password Limit: Yes Reset Password Limit: 3Disable 
   Reset Password Limit for Admins: No Blacklist Words: 5
 * — UM Email Configurations —
 * Mail appears from: Salisbury Presbyterian Preschool
    Mail appears from address:
   [info@salisburypreschool.org](https://wordpress.org/support/users/lpp_dev/replies/info@salisburypreschool.org?output_format=md)
   Use HTML for E-mails: Yes Account Welcome Email: Yes Account Activation Email:
   No Pending Review Email: Yes Account Approved Email: Yes Account Rejected Email:
   No Account Deactivated Email: Yes Account Deleted Email: Yes Password Reset Email:
   Yes Password Changed Email: Yes
 * — UM Total Users —
 *  All Users(7)
    administrator(5) editor(1) um_family-access(1) none(0)
 * — UM Roles —
 *  Administrator (administrator)
    Editor (editor) Author (author) Contributor (
   contributor) Subscriber (subscriber) Family Access (um_family-access)
 * — UM Custom Templates —
 *  N/A
 * — UM Email HTML Templates —
 *  N/A
 * — Web Server Configurations —
 * PHP Version: 7.1.20
    MySQL Version: 5.6.39 Web Server Info: Apache
 * — PHP Configurations —
 * PHP Memory Limit: 256M
    PHP Upload Max Size: 10M PHP Post Max Size: 40M PHP Upload
   Max Filesize: 10M PHP Time Limit: 30 PHP Max Input Vars: 1000 PHP Arg Separator:&
   PHP Allow URL File Open: No
 * — Web Server Extensions/Modules —
 * DISPLAY ERRORS: N/A
    FSOCKOPEN: Your server supports fsockopen. cURL: Your server
   supports cURL. SOAP Client: Your server has the SOAP Client enabled. SUHOSIN:
   Your server does not have SUHOSIN installed. GD Library: PHP GD library is installed
   on your web server. Mail: PHP mail function exist on your web server.
 * — Session Configurations —
 * Session: Enabled
    Session Name: PHPSESSID Cookie Path: / Save Path: /var/cpanel/
   php/sessions/ea-php71 Use Cookies: On Use Only Cookies: On
 * — WordPress Active Plugins —
 *  Admin CSS MU: 2.5
    Better Font Awesome: 1.7.1 CC Child Pages: 1.36 Child Theme
   Configurator: 2.3.0.4 CSS & JavaScript Toolbox: 8.4.1 CSS & JavaScript Toolbox
   PLUS: 1.1.1 Envira Gallery Lite: 1.6.2 Insert Pages: 3.4.2 Post Type Switcher:
   3.1.0 Ultimate Member: 2.0.21 Vanilla PDF Embed: 0.0.8 WPForms Lite: 1.4.7.2 
   YouTube: 12.0.1
 * ### End Install Info ###

Viewing 15 replies - 1 through 15 (of 25 total)

1 [2](https://wordpress.org/support/users/lpp_dev/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/lpp_dev/replies/page/2/?output_format=md)