This file contains 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 | |
/** | |
* Show EDD discount name instead of code in checkout summary. | |
*/ | |
function my_custom_edd_discount_display( $discount_html, $discount ) { | |
$discount = edd_get_discount_by_code( $discount ); | |
if ( ! $discount ) { | |
return $discount_html; |
This file contains 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 | |
/** | |
* Redirects users back to the previous page when accessing a restricted LearnDash lesson | |
* | |
* @param string $redirect_url The redirect URL | |
* @param int $post_id The post ID | |
* @return string The modified redirect URL | |
*/ | |
function my_learndash_redirect( $redirect_url, $post_id ) { |
This file contains 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 | |
// Excuse the mess :D | |
// we also make use of the [purchase_history] and [edd_subscriptions] shortcodes | |
function edd_account_content_hook_licenses( $output ) { | |
ob_start(); | |
?> |
This file contains 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 | |
if ( ! isset( $_GET['wpf_action'] ) ) { | |
exit(); | |
} | |
if ( ! defined( 'ABSPATH' ) ) { | |
// Normally ABSPATH isn't defined here, but this allows for overriding it with | |
// auto_prepend_file or by including this file via a bootstrap. |
This file contains 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 | |
function store_additional_license_parameters( $response, $args, $license_id ) { | |
$data = array_map( 'sanitize_text_field', $_REQUEST ); | |
if ( $response['license'] == 'valid' ) { | |
$user = get_user_by( 'email', $response['customer_email'] ); |
This file contains 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 | |
/** | |
* Utility function for getting any FooEvents attendees from a WooCommerce order | |
* @param WC_Order $order | |
* @return array Attendees | |
*/ | |
function get_foo_attendees_from_order( $order ) { | |
$attendees = array(); |
This file contains 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 | |
/** | |
* Sends API calls non-blocking during login. | |
* | |
* This is useful if your CRM has a slow API, it will allow the user to log in | |
* without any noticable delay. However, if the API is offline or fails to process | |
* the request, no error will be logged and there will be no indication it failed. | |
* | |
* @param array $parsed_args The HTTP API request args. |
NewerOlder