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 | |
/* | |
* Plugin Name: Event Calendar Newsletter - Add Organizer with Links Tag | |
* Plugin URI: https://eventcalendarnewsletter.com | |
* Description: Add {organizers_with_links} tag for Event Prime | |
* Version: 1.0.0 | |
* Author: Event Calendar Newsletter | |
* Author URI: https://eventcalendarnewsletter.com | |
* Text Domain: event-calendar-newsletter | |
* License: GPL2 |
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 | |
/* | |
Plugin Name: EDD Prompt Login On Checkout | |
Plugin URI: http://brianhogg.com/ | |
Description: Prompt login if email exists | |
Author: Dave Kiss | |
Version: 1.0.0 | |
Author URI: http://brianhogg.com | |
License: GPL2 | |
*/ |
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 | |
// ... | |
$loading = apply_filters( 'title', $loading_title ); | |
?> | |
<div class="page-loader"> | |
<div class="loading"></div> | |
<p><?= $loading ?></p> | |
</div> |
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
class EDD_Paddle_Webhook_Handler extends EDD_Webhook_Handler { | |
function get_hook_id() { | |
return 'paddle'; | |
} | |
function get_hook_name() { | |
return 'Paddle'; | |
} | |
function get_endpoint_args() { |
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
class EDD_Sendowl_Webhook_Handler extends EDD_Webhook_Handler { | |
function get_hook_id() { | |
return 'sendowl'; | |
} | |
function get_hook_name() { | |
return 'SendOwl'; | |
} | |
function get_webhook_params( $request ) { |
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 | |
/* | |
Plugin Name: EDD Webhooks | |
Description: Captures new sale notifications from 3rd party service and adds to Easy Digital Downloads | |
Version: 1.0 | |
Author: Brian Hogg | |
Author URI: https://brianhogg.com | |
Text Domain: edd-webhooks | |
License: GPL2 | |
*/ |
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 | |
/* | |
Plugin Name: Event Calendar Newsletter Pro Today/Tomorrow Prefix | |
Plugin URI: https://eventcalendarnewsletter.com | |
Description: Add today/tomorrow prefix to "group by day" header | |
Version: 1.0 | |
Author: Brian Hogg | |
Author URI: https://brianhogg.com | |
Text Domain: event-calendar-newsletter-pro | |
License: GPL2 |
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 | |
/* | |
Plugin Name: Sample Plugin | |
Plugin URI: https://brianhogg.com/ | |
Description: Showing is_new | |
Version: 1.0 | |
Author: Brian Hogg | |
Author URI: https://brianhogg.com | |
License: GPLv2 or later | |
*/ |