Created
October 18, 2013 00:49
-
-
Save amdrew/7034827 to your computer and use it in GitHub Desktop.
Add some text just before the purchase button on the checkout page in Easy Digital Downloads
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 my_child_theme_edd_purchase_form_after_cc_form() { ?> | |
<p>Enter your text here</p> | |
<?php } | |
add_action( 'edd_purchase_form_after_cc_form', 'my_child_theme_edd_purchase_form_after_cc_form' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment