Skip to content

Instantly share code, notes, and snippets.

@SeanChDavis
Last active August 29, 2015 14:03
Show Gist options
  • Select an option

  • Save SeanChDavis/fc4f8cba12b83e5d0f58 to your computer and use it in GitHub Desktop.

Select an option

Save SeanChDavis/fc4f8cba12b83e5d0f58 to your computer and use it in GitHub Desktop.
Move Payment Gateway Icons
<?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