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 | |
/** | |
* Plugin Name: [ CoursePress 2 ] - Email Notifications on Completion | |
* Plugin URI: https://premium.wpmudev.org/ | |
* Description: Sends an email notification to the Student upon Course Completion | |
* Author: Alessandro Kaounas @ WPMUDEV | |
* Author URI: https://premium.wpmudev.org/ | |
* License: GPLv2 or later | |
*/ |
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
add_filter('ms_frontend_custom_registration_form','gravity_register_form') ; | |
function gravity_register_form($form) { | |
if(!is_user_logged_in()) | |
return do_shortcode('[gravityform id =1]'); | |
return $form ; | |
} |