Skip to content

Instantly share code, notes, and snippets.

@Benunc
Created November 18, 2022 20:06
Show Gist options
  • Select an option

  • Save Benunc/2833813ee871211a5145921cec74b767 to your computer and use it in GitHub Desktop.

Select an option

Save Benunc/2833813ee871211a5145921cec74b767 to your computer and use it in GitHub Desktop.
<?php
function hide_some_donor_dashboard_stuff() {
wp_add_inline_style(
/**
* Below, use give-sequoia-template-css to style the multi-step donation form
* or use to style the donor dashboard
*/
'give-styles',
'
a[href="#/edit-profile"]
{
display: none !important;
}
'
);
}
add_action('wp_print_styles', 'hide_some_donor_dashboard_stuff', 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment