Home / Admin / Custom API Keys
Duplicate Snippet

Embed Snippet on Your Site

Custom API Keys

Code Preview
php
<?php
/**
 * Returns the Stripe Secret key.
 */
function get_secret_key( $key ) {
	return 'sk_live_123';
}
add_filter( 'simpay_stripe_api_secret_key', 'get_secret_key' );
add_filter( 'simpay_secret_key', 'get_secret_key' );
/**
 * Returns the Stripe Publishable key.
 */
function get_publishable_key( $key ) {
	return 'pk_live_123';
}
add_filter( 'simpay_stripe_api_publishable_key', 'get_publishable_key' );
add_filter( 'simpay_publishable_key', 'get_publishable_key' );

Comments

Add a Comment