Created
November 30, 2015 17:47
-
-
Save SeanChDavis/42ea48ab354d89f63633 to your computer and use it in GitHub Desktop.
EDD Purchase Receipt Download Links Note
This file contains 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 // DO NOT COPY THIS LINE | |
/** | |
* Add download links note to purchase receipt | |
*/ | |
function sd_download_note_purchase_receipt() { | |
?> | |
<p class="receipt-download-note"><strong><em>Click the link(s) below to download your purchase.</em></strong></p> | |
<? | |
} | |
add_action( 'edd_payment_receipt_after_table', 'sd_download_note_purchase_receipt' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment