Created
August 21, 2017 16:23
-
-
Save robertuniqid/84cf925ea0287e6413467ed9f6170533 to your computer and use it in GitHub Desktop.
WPEP Sales Engine - Enforce Stripe to be available as a Payment Method
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( '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