Skip to content

Instantly share code, notes, and snippets.

@andrewlimaza
Created April 12, 2019 10:14
Show Gist options
  • Select an option

  • Save andrewlimaza/f4eb4285bb0431506e155d72f68df2ef to your computer and use it in GitHub Desktop.

Select an option

Save andrewlimaza/f4eb4285bb0431506e155d72f68df2ef to your computer and use it in GitHub Desktop.
Default checkout level if no level parameter
<?php
/**
* Set default checkout level if none is specified.
* Add this code to your PMPro Customizations Plugin - https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*/
function my_pmpro_set_default_level( $level ) {
return 1; // Change the level ID
}
add_filter( 'pmpro_default_level', 'my_pmpro_set_default_level' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment