Hi @shemakeswebsites!
Happy to clarify here:
The Donor Dashboard loads in an iframe to make it more resilient and hard for the theme to inadvertently break things with styles. That also makes it a bit more complicated to style.
Here’s a screencast showing how to remove those items using PHP and CSS:
https://somup.com/cr1b2jqE3C
And here’s the code snippet from that screencast:
function override_form_template_styles_with_inline_styles() {
wp_add_inline_style(
'give-donor-dashboards-app',
'
.give-donor-dashboard-donor-info__avatar, .give-donor-dashboard-tab-menu a:first-child, .give-donor-dashboard-logout {
display:none;
}'
);
}
add_action('wp_print_styles', 'override_form_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/?
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 that resolves things, or if you need further assistance. ?Thanks for using GiveWP! Have a great day.