View pmprodon_pmpro_donation_recurring.php
<?php | |
/* | |
* This gist adds recurring functionality to the Donations Add On for Paid Memberships Pro. | |
* It adds the user-entered 'donation amount' to their recurring billing amount. | |
*/ | |
//add donation amount to recurring payment amount | |
function pmprodon_pmpro_donation_recurring( $level ) { | |
if( isset( $_REQUEST['donation'] ) ) { | |
$donation = preg_replace( '[^0-9\.]', '', $_REQUEST['donation'] ); |
View pmpro_level_groups_pmpro_checkout_boxes.php
<?php //Do not copy this PHP tag into your code. | |
/** | |
* Define groups of levels and allow members to select from both levels at checkout. | |
* Useful for offering multiple pricing structures for membership (i.e. Monthly, Annually) | |
* | |
* Add this code below to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
*/ | |
// Define the groups of levels. array(1,2) means that levels 1 and 2 are in a group and options will be shown for both levels at checkout for those levels. | |
global $pmpro_level_groups; |
View pmpro_after_change_membership_level_default_level.php
<?php | |
/** | |
* When users cancel (are changed to membership level 0) we give them another "cancelled" level. | |
* Can be used to downgrade someone to a free level when they cancel. | |
* Will allow members to the "cancel level" to cancel from that though. | |
*/ | |
function my_pmpro_after_change_membership_level_default_level( $level_id, $user_id ) { | |
// Set this to the id of the level you want to give members when they cancel. | |
$cancel_level_id = 1; |
View my_pmpro_widget_display_callback.php
<?php | |
/** | |
* Hide widgets by widget area ID for protected members only contnet. | |
* Update the $hide_sidebars_array with the array of sidebar IDs you want to filter. | |
* Add this code to your active theme's functions.php or a custom plugin. | |
*/ | |
function my_pmpro_widget_display_callback( $instance, $widget, $args ) { | |
// Set an array of widget areas by ID to filter. | |
$hide_sidebars_array = array( 'sidebar-1', 'sidebar-2' ); |
View donteatthat_pmpro_checkout_level.php
<?php | |
/** | |
* Custom Register Helper fields for donteatthat thread on price-adjusting fields. | |
*/ | |
function donteatthat_pmprorh_init() { | |
// Don't break if Register Helper is not loaded. | |
if ( ! function_exists( 'pmprorh_add_registration_field' ) ) { | |
return false; | |
} |
View pmpro_checkout_level.php
<?php | |
/* | |
* Add this code into a custom plugin. Combine this with the pmpro-set-expiration-date and/or pmpro-subscription-delay plugins | |
* to have memberships expire/renew on the same date, e.g. Y2-01-01 to expire/renew on Jan 1 next year. | |
* | |
* You can update the logic to check for different months or adjust the price in a different way. The code below divides the | |
* initial payment by 2 July 1 through Dec 31. | |
*/ | |
function pmpro_checkout_level_half_off_mid_year( $level ) { | |
$month = date( 'n', current_time( 'timestamp' ) ); |
View pmpro_customizations_gift_levels_example.php
<?php | |
/** | |
* Gift Levels Example for thehawaiiherald.com | |
*/ | |
global $pmprogl_gift_levels; | |
$pmprogl_gift_levels = array( | |
// Set level 2 as a "Purchase Gift" membership level to create a gift code for "Basic Online" membership for 1 year. | |
2 => array( // "Purchase Gift" level ID | |
'level_id' => 1, // Membership Level ID of the gift membership level. |
View set_enddate_null.sql
# BACKUP FIRST | |
# This will remove any expiration date on | |
# every member in your database. | |
# BACKUP FIRST | |
UPDATE wp_pmpro_memberships_users | |
SET enddate = '0000-00-00 00:00:00' | |
WHERE status = 'active' |
View my_pmpro_getresponse_custom_fields.php
<?php | |
/** | |
* This filter will send additional user meta fields to contacts in GetResponse. | |
* | |
* Add this code to your PMPro Customizations Plugin | |
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/ | |
* | |
* @param array $fields the array of fields to send | |
* @param object $user what is written in the code that we want to change | |
*/ |
OlderNewer