Title: jayseeCofC's Replies | WordPress.org

---

# jayseeCofC

  [  ](https://wordpress.org/support/users/jayseecofc/)

 *   [Profile](https://wordpress.org/support/users/jayseecofc/)
 *   [Topics Started](https://wordpress.org/support/users/jayseecofc/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jayseecofc/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jayseecofc/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jayseecofc/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jayseecofc/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jayseecofc/favorites/)

 Search replies:

## Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front End Users] Registration](https://wordpress.org/support/topic/registration-41/)
 *  [jayseeCofC](https://wordpress.org/support/users/jayseecofc/)
 * (@jayseecofc)
 * [12 years ago](https://wordpress.org/support/topic/registration-41/#post-5135158)
 * Did you by chance try to edit the php code through the admin panel plugins->editor?
   In wordpress if there’s a php error in a file, it won’t be able to load your 
   site. The only solution is to ftp in to the server and fix the line of code the
   error message is displaying (line 37 of Insert_Register_Form.php in your case).
 * I ask if you edited the file because I’m using this plugin and haven’t had any
   problems with the register shortcode. Line 37 deals with parsing the attributes
   passed in when calling the shortcode (ie getting redirect_page from [register
   redirect_page=”somepage.com”]). Hope this info helps!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Front End Users] Email Registration Bug](https://wordpress.org/support/topic/email-registration-bug/)
 *  Thread Starter [jayseeCofC](https://wordpress.org/support/users/jayseecofc/)
 * (@jayseecofc)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/email-registration-bug/#post-5131403)
 * Also the EWD_FEUP_Send_Email function in Prepare_Data_For_Insertion.php script
   needs some tweeking…
 * Currently it replaces the [password] shortcode with the encrypted SHA1 MD5 password(
   not very helpful to the user). To get around this I passed in the $_POST variable
   as a 3rd parameter to the function and changed line 94 from:
 * `$Message_Body = str_replace("[password]", $User_Fields['Password'], $Message_Body);`
   
   to `$Message_Body = str_replace("[password]", $_POST['User_Password'], $Message_Body);`
 * I also changed line 137 to:
    `$Mail_Success = mail($User_Email, $Email_Subject,
   $Message_Body, $headers);` as it should be (currently the first 2 arguments to
   mail are static…)

Viewing 2 replies - 1 through 2 (of 2 total)