PDF Receipts - Donor Dashboard's Download Receipt button should show the text
Timothy Lyubezhanin
Adding this to functions.php should fix it for now. Hopefully this is fixed soon.
/
Add custom styles GiveWp to fix the CSS issue download receipt button
/add_action('give_embed_head', 'add_custom_givewp_inline_styles');
function add_custom_givewp_inline_styles() {
?>
<style>
.give-donor-dashboard__donation-history-footer .give-donor-dashboard-button.give-donor-dashboard-button--primary:before {
background: none;
}
.give-donor-dashboard__donation-history-footer .give-donor-dashboard-button.give-donor-dashboard-button--primary {
background: var(--give-donor-dashboard-accent-color);
}
</style>
<?php
}