This file contains hidden or 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 | |
| // Paste the code below into a plugin like Code Snippets (run on front end snippet type) | |
| function leave_one_country($countries, $prioritize_my_country) { | |
| return array( | |
| 'DE' => _x('Germany', 'ui', 'memberpress') | |
| ); | |
| } | |
| add_filter('mepr_countries', 'leave_one_country', 10, 2); |
This file contains hidden or 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 | |
| add_filter( 'mepr_fetch_options', 'mp_filter_custom_fields' ); | |
| /** | |
| * Filter the MemberPress options to set a dynamic value for custom fields. | |
| * | |
| * @param object $options MeprOptions | |
| * | |
| * @return object MeprOptions | |
| */ |