Created
November 18, 2022 20:06
-
-
Save Benunc/2833813ee871211a5145921cec74b767 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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