Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save courtneyr-dev/a047f8c20a52dc9e8857add1e2c06f48 to your computer and use it in GitHub Desktop.
Save courtneyr-dev/a047f8c20a52dc9e8857add1e2c06f48 to your computer and use it in GitHub Desktop.
Example global settings for the PMPro Sponsored Members Add On
/*
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
3 => array(
'main_level_id' => 3, //redundant but useful
'sponsored_level_id' => 4,
'seat_cost' => 250,
'max_seats' => 10
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment