Created
February 12, 2015 15:48
-
-
Save SeanChDavis/1940951e073f2152e3f8 to your computer and use it in GitHub Desktop.
EDD - Move Payment Gateway Icons Above Credit Card Form
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 | |
// remove payment gateway icon from above purchase form | |
remove_action( 'edd_checkout_form_top', 'edd_show_payment_icons' ); | |
// add payment gateway above CC form | |
add_action( 'edd_before_cc_fields', 'edd_show_payment_icons' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment