Title: Several Set Up Issues
Last modified: September 3, 2022

---

# Several Set Up Issues

 *  Resolved [z14165899](https://wordpress.org/support/users/z14165899/)
 * (@z14165899)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/several-set-up-issues/)
 * Hello:
    I have the following issues after setting up Give WP: 1. I embedded the
   shortcode of the Donor Dashboard on my website, but there is a Logout button 
   on the bottom left corner as shown in [this image](https://prnt.sc/YlDAENgOC3GV).
   I do not want this button because I have the logout option in a membership plugin.
   Can someone tell me how to remove the Logout button in the Donor Dashboard? 2.
   How to automatically create a WP donor role for each user when they create an
   account on my website? Please help. Thank you and have a nice day.
 * Best Regards,
 * Chen Zhao

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

 *  Plugin Support [Rick Alday](https://wordpress.org/support/users/mrdaro/)
 * (@mrdaro)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/several-set-up-issues/#post-15992092)
 * Hi Chen,
 * You can use custom CSS to hide that element. Adding custom CSS to the Donor Dashboard
   requires using a PHP function. You can use this:
 *     ```
       function override_iframe_template_styles_with_inline_styles() {
           wp_add_inline_style(
               'give-styles',
               '
               .give-donor-dashboard-logout { display: none; }
   
               '
           );
       }
   
       add_action('wp_print_styles', 'override_iframe_template_styles_with_inline_styles', 10);
       ```
   
 * If you need assistance implementing custom PHP code on your website we have this
   guide:
    [https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/](https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/)
 * Please note that this code snippet is provided as an example of how you can extend
   GiveWP with code. It’s up to you to implement and customize to your liking. We
   cannot provide support for custom code on your website, only the code that we
   create and distribute.
 * Let me know if you have any questions or need additional assistance.
 *  Plugin Support [Rick Alday](https://wordpress.org/support/users/mrdaro/)
 * (@mrdaro)
 * [3 years, 10 months ago](https://wordpress.org/support/topic/several-set-up-issues/#post-15992179)
 * Sorry, I clicked the submit button before I answered your second question.
 * By default, all new donors are given the role of **Donor**. This can be changed
   in Donations -> Settings -> Advanced -> Default User Role.
 *  Plugin Support [Rick Alday](https://wordpress.org/support/users/mrdaro/)
 * (@mrdaro)
 * [3 years, 9 months ago](https://wordpress.org/support/topic/several-set-up-issues/#post-16008746)
 * Hi there,
 * Just checking in on this issue.
    Do you still need assistance here?
 * If you still need help, reply and we’ll make sure everything is handled.
 * Thanks!

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

The topic ‘Several Set Up Issues’ is closed to new replies.

 * ![](https://ps.w.org/give/assets/icon-256x256.jpg?rev=2873287)
 * [GiveWP - Donation Plugin and Fundraising Platform](https://wordpress.org/plugins/give/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/give/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/give/)
 * [Active Topics](https://wordpress.org/support/plugin/give/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/give/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/give/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Rick Alday](https://wordpress.org/support/users/mrdaro/)
 * Last activity: [3 years, 9 months ago](https://wordpress.org/support/topic/several-set-up-issues/#post-16008746)
 * Status: resolved