Example global settings for the PMPro Sponsored Members Add On
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
/* | |
Define the global array below for your main accounts and sponsored levels. | |
Array keys should be the main account level. | |
*/ | |
global $pmprosm_sponsored_account_levels; | |
$pmprosm_sponsored_account_levels = array( | |
//set 5 seats at checkout | |
1 => array( | |
'main_level_id' => 1, //redundant but useful | |
'sponsored_level_id' => array(2,3), //array or single id | |
'seats' => 5 | |
), | |
//seats based on field at checkout | |
4 => array( | |
'main_level_id' => 4, //redundant but useful | |
'sponsored_level_id' => 5, | |
'seat_cost' => 250, | |
'max_seats' => 10 | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment