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 // Don't copy this line to your wp-config.php file! | |
// MailChimp | |
define( 'LLMS_MAILCHIMP_API_KEY', 'YOUR-API-KEY-GOES-HERE' ); |
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 // don't copy this line to your wp-config.php file! | |
// Sandbox (Test) API Credentails. | |
define( 'LLMS_AUTH_DOT_NET_TEST_CLIENT_KEY', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' ); | |
define( 'LLMS_AUTH_DOT_NET_TEST_LOGIN_ID', 'XXXXXXXXX' ); | |
define( 'LLMS_AUTH_DOT_NET_TEST_TRANSACTION_KEY', 'XXXXXXXXXXXX' ); | |
// Production (Live) API Credentails. | |
define( 'LLMS_AUTH_DOT_NET_LIVE_CLIENT_KEY', 'XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' ); | |
define( 'LLMS_AUTH_DOT_NET_LIVE_LOGIN_ID', 'XXXXXXXXX' ); |
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 // Don't include this line in your functions.php file! | |
add_filter( 'llms_mc_enable_consent', '__return_false' ); |
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 // Do not copy this line to a functions.php file! | |
/** | |
* Add a timezone string to the end of the lesson drip availability message | |
* | |
* The default message is: "The lesson "{$LESSON_TITLE}" will be available on {$AVAILABLE_DATE} | |
* | |
* This filter converts the message to: "The lesson "{$LESSON_TITLE}" will be available on {$AVAILABLE_DATE} {$TIMEZONE} | |
* | |
* @since 2020-08-21 |
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 // don't copy this to a functions.php file! | |
/** | |
* Make the BuddyPress/BuddyBoss "Private Network" available only to "active" LifterLMS User Accounts | |
* | |
* An "active" account is any logged in user with active enrollment into at least one course or membership. | |
* | |
* @return void | |
*/ | |
function bp_llms_private_network_redirect() { | |
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
# Show Activities | |
gesture swipe up 4 xdotool key super | |
# Show Applications | |
gesture swipe down 4 xdotool key super+a | |
# Navigation: Forward & Back | |
gesture swipe left 3 xdotool key alt+Right | |
gesture swipe right 3 xdotool key alt+Left |
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 // Don't copy this line to your functions.php file! | |
/** | |
* Remove Stripe.js (as enqueued by the LifterLMS Stripe plugin) from pages where Stripe isn't explicitly required or used. | |
* | |
* Stripe *recommends* that you load Stripe.js on every site on your website | |
* to improve automatic fraud detection (https://stripe.com/docs/radar). | |
* | |
* You can use this code if you don't care about Radar / fraud detection | |
* to enjoy a small performance improvement. |
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 // don't copy this line to your wp-config.php file! | |
// Twilio. | |
define( 'LLMS_TWILIO_SID', 'XXXXXXXXXXXXXXXXXXXXXXXXXX' ); | |
define( 'LLMS_TWILIO_AUTHKEY', 'XXXXXXXXXXXXXXXXXXXXXXXXXX' ); |
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 // don't copy this line to your functions.php file! | |
/** | |
* Adjust the locale of the Stripe.js credit card form. | |
* | |
* @param array $settings Array of settings. | |
* @return array | |
*/ | |
function my_llms_stripe_js_locale( $settings ) { |
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 // Don't copy this line to your functions.php file. | |
/** | |
* Create an email blacklist to prevent spam registrations during LifterLMS checkout | |
* | |
* This is hooked to llms_before_checkout_validation | |
* | |
* This filter runs prior to any built-in checkout form validations allowing custom | |
* validations to be run. | |
* |
NewerOlder