<?php // Don't copy this line! /** * Define Stripe API keys as constants instead of saving them to your sites database (LifterLMS Stripe) * * @since 2019-04-17 */ // Live API Keys. define( 'LLMS_STRIPE_LIVE_PUBLISHABLE_KEY', 'pk_live_**************' ); define( 'LLMS_STRIPE_LIVE_SECRET_KEY', 'sk_live_**************' ); // Test API Keys. define( 'LLMS_STRIPE_TEST_PUBLISHABLE_KEY', 'pk_test_**************' ); define( 'LLMS_STRIPE_TEST_SECRET_KEY', 'sk_test_**************' );