Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created August 1, 2018 07:58
Show Gist options
  • Save bappi-d-great/12e1d7a435896cdbbfd5e9a80b07f010 to your computer and use it in GitHub Desktop.
Save bappi-d-great/12e1d7a435896cdbbfd5e9a80b07f010 to your computer and use it in GitHub Desktop.
Reorder gateway list on the checkout page in marketpress
<?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