Skip to content

Instantly share code, notes, and snippets.

@robertuniqid
Created August 21, 2017 16:23
Show Gist options
  • Save robertuniqid/84cf925ea0287e6413467ed9f6170533 to your computer and use it in GitHub Desktop.
Save robertuniqid/84cf925ea0287e6413467ed9f6170533 to your computer and use it in GitHub Desktop.
WPEP Sales Engine - Enforce Stripe to be available as a Payment Method
<?php
add_filter( 'wpep_addon_sales_engine_payment_processing_methods', function( $processing_options ) {
$processing_options['stripe'] = __( "Stripe" );
}, 20 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment