kameyers
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to have new user password sent to admin before userOk, I got to playing around with some stuff, and I found this segment of code in wp-includes/pluggable.php, around line 468:
wp_mail($user_email, sprintf(__('[%s] Your username and password'), get_option('blogname')), $message);
change it to this:
wp_mail('[email protected]', sprintf(__('[%s] Your username and password'), get_option('blogname')), $message);
I am not a guru at this stuff and my knowledge didn’t solve the problem. I just fine tuned what another member, kwesitn, discovered. The credit goes to that person.
I hope this helps someone other than myself.
Forum: Fixing WordPress
In reply to: How to have new user password sent to admin before userI felt that my first post was somewhat unclear. I have found a post that describes exactly what I want, however, WP 2.1 does not have wp-includes/pluggable-functions.php.
I found a solution that worked for me. Instead of having the email with the username and password be sent to the registrant, I tweaked it so that it comes to me. If I want to approve the user I then just forward the email on to the user. Here is a summary of what I changed:
In wp-includes/pluggable-functions.php
I changed this function on line 427 or so from this:
wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), get_settings(‘blogname’)), $message);
To this:
wp_mail(‘webmaster@mydomain’, sprintf(__(‘[%s] Your username and password’), get_settings(‘blogname’)), $message);
So the user does not get their username and password without me sending it to them. This could probably be turned into a plugin pretty easily…and would do it when I have some time.
Forum: Fixing WordPress
In reply to: Possible to make comments continue on another page?Truth, thanks a bunch. I feel silly for not finding this sooner. ??
Forum: Fixing WordPress
In reply to: Involuntary Space placed after an apostrophie in IEThanks for your feedback. I feel really silly. Figured out the problem. I live in China (work) and my browser is set to the wrong encoding. Set it back it works fine. Thanks
Forum: Fixing WordPress
In reply to: Search bar w/o the button possible?Yeah that’s the type of search bar, however, I like the theme I am currently using. Thanks anyway for your feedback. Much appreciated.
Forum: Fixing WordPress
In reply to: My page looks horrible in IE!Thanks, I have been very impressed at the generous feedback everyone has shown me. Honestly, I didn’t really notice the small glitch at the bottom of the page. I was more interested in the search bar and my first post are different. I have been looking in the above websites for help. I am having a little difficulty in finding my problem. As I said, I’m not a programmer, so looking at all of the technical jargon is somewhat confusing to me. Anyway, even if it doesn’t get fixed, I sure appreciate your help.
Forum: Fixing WordPress
In reply to: My page looks horrible in IE!Right, I don’t mind the margin shift, it’s the <previous in the post box. Also the search submit button is under the search bar. In Firefox it’s not. This is probably a small problem with an easy solution. Very sorry abou this. Thanks for your replys.