• Resolved wildflower24

    (@wildflower24)


    Hi there, i’m using conditional logic to define what type of member i’ll asign to user after registration and works fine, but in the register email im getting all the conditional fields that are hidden like “empty”.

    How can i display in the email ONLY the fields that are completed by the user?

    Thanks!

Viewing 1 replies (of 1 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @wildflower24

    Unfortunately, this requires customization on your end.

    You can try using this filter hook to modify the submitted user details:

    add_filter("um_profile_submitted__filter","um_profile_submitted__filter", 10, 1 );
    function um_profile_submitted__filter( $submitted ){
    
       // do something $submitted;
    
       return $submitted;
    }

    Regards,

Viewing 1 replies (of 1 total)

The topic ‘Hide empty fields from register email’ is closed to new replies.