Skip to content

Instantly share code, notes, and snippets.

@amdrew
Created October 18, 2013 00:49
Show Gist options
  • Save amdrew/7034827 to your computer and use it in GitHub Desktop.
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
<?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