The My Profile is a dashboard page that shows in the front-end dashboard only if there is a published page with the custom page template “User Dashboard Profile Page”

The user will be redirected to this page after login (if in Theme Options you did not set a different page for the redirect) On this page, the user will add personal details like First Name, Last Name, and others, the user will be able to upload an ID scan and a profile image.

In My Profile, there are 2 additional fields

  • Payment Info/Hidden Field (it’s a private field that is not published anywhere on the front).
  • Email for receiving Paypal Payments (booking fees, refund security fees, etc) – can be used for offline payments (outside the theme)

Also, the user can Delete the account from this page. It deletes all data related to the user account (My Profile, My Reservations, My properties, My bookings, My Invoices, My sent messages, My Reviews)

The link of the My profile page is the one used to create APIs for Facebook and Google login.

Hide elements from Profile Page with Custom CSS

How to hide “I live In” from My Profile

[id="live_in"] { display: none!important; }
[for="live_in"] { display: none!important; }

How to hide “Facebook”

[id="userfacebook"] { display: none!important; }
[for="userfacebook"] { display: none!important; }

How to hide “Twitter”

[id="usertwitter"] { display: none!important; }
[for="usertwitter"] { display: none!important; }

How to hide “Linkedin”

[id="userlinkedin"] { display: none!important; }
[for="userlinkedin"] { display: none!important; }

How to hide “Pinterest”

[id="userpinterest"] { display: none!important; }
[for="userpinterest"] { display: none!important; }

How to hide “Skype”

[id="userskype"] { display: none!important; }
[for="userskype"] { display: none!important; }

How to hide “Mobile”

[id="usermobile"] { display: none!important; }
[for="usermobile"] { display: none!important; }

How to hide “I Speak”

[id="i_speak"] { display: none!important; }
[for="i_speak"] { display: none!important; }

How to hide “Email Receiving for PayPal Payments”

[id="paypal_payments_to"] { display: none!important; }
[for="paypal_payments_to"] { display: none!important; }

How to hide “Email Receiving for PayPal Payments”

[id="paypal_payments_to"] { display: none!important; }
[for="paypal_payments_to"] { display: none!important; }

How to hide “Upload Id Scan”

#user-id-image {
    display: none;
}

#user-id-uploader {
    display: none;
}