Last active
August 29, 2015 14:03
-
-
Save SeanChDavis/fc4f8cba12b83e5d0f58 to your computer and use it in GitHub Desktop.
Move Payment Gateway Icons
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 // DO NOT COPY THIS LINE | |
| // remove payment gateway icon from above purchase form | |
| remove_action( 'edd_checkout_form_top', 'edd_show_payment_icons' ); | |
| // add message below purchase button | |
| function custom_payment_icon_message() { ?> | |
| <span class="payment-icon-message">This is a special message.</span> | |
| <?php } | |
| add_action( 'edd_checkout_form_bottom', 'custom_payment_icon_message' ); | |
| // add payment gateway below purchase form | |
| add_action( 'edd_checkout_form_bottom', 'edd_show_payment_icons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment