Title: Shortcode for edit profile
Last modified: June 19, 2022

---

# Shortcode for edit profile

 *  Resolved [minmalist](https://wordpress.org/support/users/minmalist/)
 * (@minmalist)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/)
 * Hello,
    Can I please get the shortcode for edit profile? I’d like to put a button
   linked directly to the edit page, without going through the profile page.
 * or is it okay to use this link
 * [https://mydomain.com/profile/?edit_user=1](https://mydomain.com/profile/?edit_user=1)
 * it seems like that “1” needs to change… but I am not familiar with urls….
    shouldn’t
   it be changed to a symbol or something…?
 * Sorry I’m new to this….
    It might not work that way…. A link or a shortcode, 
   anything is fine.
 * Thank you.
    -  This topic was modified 3 years, 11 months ago by [minmalist](https://wordpress.org/support/users/minmalist/).

Viewing 8 replies - 1 through 8 (of 8 total)

 *  Plugin Contributor [genetech](https://wordpress.org/support/users/genetech/)
 * (@genetech)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15751293)
 * Hi,
 * It is ok to use the link mentioned above ([https://mydomain.com/profile/?edit_user=1](https://mydomain.com/profile/?edit_user=1)).
   
   Just make sure that you use the correct profile URL (the URL to the profile page
   you selected in PR Menu > Settings > Pages).
 * ‘1’ is not a dynamic value. Simply append ‘?edit_user=1’ to the profile URL for
   the edit profile page URL.
 * Thank you
 *  Thread Starter [minmalist](https://wordpress.org/support/users/minmalist/)
 * (@minmalist)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15754654)
 * Thank you for the answer. And thank you for creating this plugin.
    I had so many
   problems using some other plugins I am glad I moved on to this one. it’s doing
   wonders for me.
 *  if you don’t mind asking….I have one more question..
 *  I just noticed the profile picture that I upload on the edit profile doesn’t
   show when I add author box for post using elementor, neither on the user list.
 * What should I do?
 * The following question is “Is it also possible to add the user data that I added
   additionally on the registration to show somewhereelse?
    -  This reply was modified 3 years, 11 months ago by [minmalist](https://wordpress.org/support/users/minmalist/).
 *  Plugin Contributor [genetech](https://wordpress.org/support/users/genetech/)
 * (@genetech)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15755181)
 * Hi,
 * Glad to hear that. Appreciate it.
 * The author box is a paid Elementor feature and hence not tested. You can use 
   the [pie_user_profile_pic] shortcode to add the Profile Picture of the user.
 * Also, you can add the profile picture or any PR custom data through custom code.
 * Thank you
    -  This reply was modified 3 years, 11 months ago by [genetech](https://wordpress.org/support/users/genetech/).
 *  Thread Starter [minmalist](https://wordpress.org/support/users/minmalist/)
 * (@minmalist)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15758678)
 * Thank You and sorry for more questions…
 * 1. Is it possible to style the profile picture…?
    To this preferably,
 *  border-style: solid
    border-radius: 100
 * (trying to make it a circle)
 * 2. I am not sure what do you mean by “custom code”
    do you mean by me doing it
   personally…? or do you mean there are short codes for them somewhere too…? because
   I searched your website for short codes and they were not there….
 * if this helps….I am just trying to put the answer for field_4 & field_7 on a 
   different page….
 * Thank you for your time…I know one more question became many….
    I have no idea
   how to code.. I am just trying my best within my best.
 * I don’t know how you do this…
    you must be The Avengers or something!!!
    -  This reply was modified 3 years, 11 months ago by [minmalist](https://wordpress.org/support/users/minmalist/).
    -  This reply was modified 3 years, 11 months ago by [minmalist](https://wordpress.org/support/users/minmalist/).
    -  This reply was modified 3 years, 11 months ago by [minmalist](https://wordpress.org/support/users/minmalist/).
 *  Thread Starter [minmalist](https://wordpress.org/support/users/minmalist/)
 * (@minmalist)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15758779)
 * So far, I’ve been searching it around and used the below CSS to fix the shape
 *     ```
       .elementor img {
           height: auto;
           max-width: 100%;
           border: solid;
           border-color: #000000;
           border-radius: 150px 150px 150px 150px;
           box-shadow: none;
       }
       ```
   
 * the problem is
    there are other images on the same page and they change together…..
 * I can tell the part .elementor img is for all the images not only for the profile
   picture…
    however, my knowledge is not sufficient enough to know how to target
   an image…
 * please help…
 *  Plugin Contributor [genetech](https://wordpress.org/support/users/genetech/)
 * (@genetech)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15758947)
 * Hi,
 * No worries.
 * 1. If you’re using the shortcode provided above, add ‘.show-profile-img’ between‘.
   elementor img’ and it would target that profile image. So your CSS should look
   like this:
 *     ```
       .elementor .show-profile-img img {
           height: auto;
           max-width: 100%;
           border: solid;
           border-color: #000000;
           border-radius: 150px 150px 150px 150px;
           box-shadow: none;
       }
       ```
   
 * Make sure your structure has the classes in the same order.
 * 2. You would have to manually write a code. Fetch user data from the database
   and then show it wherever needed.
    If you could share your website’s registration
   URL and explain your requirement in detail, we might be able to help you. We’ll
   share a sample code to give you an idea.
 * Thank you
 *  Thread Starter [minmalist](https://wordpress.org/support/users/minmalist/)
 * (@minmalist)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15762247)
 * it worked perfectly!!!!
 * Wow…your support is on point!!!
    But I think I should work on other bigger stuff
   first. (I bothered you enough for now haha) I will open up a new topic if I need
   the help, later.
 * Thank you so much♥
 *  Plugin Contributor [genetech](https://wordpress.org/support/users/genetech/)
 * (@genetech)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15762745)
 * Hi,
 * Sure thing, we’ll be happy to help 🙂
 * Can you please give us a review [here](https://wordpress.org/plugins/pie-register/#reviews).
   Much appreciated.
 * Thank you

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Shortcode for edit profile’ is closed to new replies.

 * ![](https://ps.w.org/pie-register/assets/icon-256x256.png?rev=2467686)
 * [Pie Register – User Registration, Profiles & Content Restriction](https://wordpress.org/plugins/pie-register/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/pie-register/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/pie-register/)
 * [Active Topics](https://wordpress.org/support/plugin/pie-register/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/pie-register/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/pie-register/reviews/)

 * 8 replies
 * 2 participants
 * Last reply from: [genetech](https://wordpress.org/support/users/genetech/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/shortcode-for-edit-profile/#post-15762745)
 * Status: resolved