Created
August 1, 2018 07:58
-
-
Save bappi-d-great/12e1d7a435896cdbbfd5e9a80b07f010 to your computer and use it in GitHub Desktop.
Reorder gateway list on the checkout page in marketpress
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 | |
add_filter( 'mp_payment_options_array', function( $options ) { | |
$temp = array(); | |
$temp['paypal_express'] = $options['paypal_express']; | |
$temp['stripe'] = $options['stripe']; | |
$temp['manual_payments'] = $options['manual_payments']; | |
return $temp; | |
}, 10 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment