remymedranda
Forum Replies Created
-
Forum: Plugins
In reply to: [New User Approve] Change the login url that appears in the approval emailThank you Josh that worked.
Forum: Plugins
In reply to: [New User Approve] Way to add an attachment to the Approval Email?Josh,
How would I override the current function?
I searched the page you referenced for attachment and this was the example code it offered.
<?php
$attachments = array( WP_CONTENT_DIR . ‘/uploads/file_to_attach.zip’ );
$headers = ‘From: My Name <[email protected]>’ . “\r\n”;
wp_mail(‘[email protected]’, ‘subject’, ‘message’, $headers, $attachments );
?>So what would be the proper code to add to my functions list that would override the current function?
Forum: Plugins
In reply to: [Locatoraid Store Locator] Is there a way to search a store by name?How about adding a tag to the location, and then being able to search by tags?
When will I be able to show my list in alphabetical order?
Please help, looking for a solution for this problem.
Are we able to do this yet?
Forum: Plugins
In reply to: [New User Approve] Customize Email Sent to new usersI’m slowly learning how to add the modifier codes to the functions.php in order to modify the email being sent out to approved users, but one question…
Say I’m running tests creating users right.
I approved a pending user I created. Checked the email, liked what I saw..
Then denied the user account. Checked the email again, liked what I saw.
So finally, I went back and approved the account again, and then I noticed the email I received didn’t have the password.
The first time I hit approve, the email that was sent out DID contain the password.
Any reason why the second time being approved would not cause a password to be inserted for the user in the email?
Here’s the modifying code I added to change the subject line, don’t think it has anything to do with the problem, but what do I know. ??
/**
* Modify the subject of a message sent to a user after being approved.
*
* @param $message The default message.
* @return string the updated message.
*/
function my_custom_subject( $subject ) {
$subject = ‘STEP 2: Get Approved’;
return $subject;
}// modify the subject for the approval message
add_filter( ‘new_user_approve_approve_user_subject’, ‘my_custom_subject’ );Forum: Plugins
In reply to: [New User Approve] Customize email to approuve/deny userI added it to my functions.php and it seems to work. Sure looking forward to the day this is built into the plugin.
Forum: Plugins
In reply to: [New User Approve] Customize email to approuve/deny userWhere would I add this code in order to change the subject line?
Forum: Plugins
In reply to: [New User Approve] Customize Email Sent to new usersJosh has there been any updates regarding this request because I sure need it right about now. Thanks for your great work on this plugin.
forget it, I had a js minify plugin that was messing stuff up…. it already does what I ask.
Forum: Plugins
In reply to: [New User Approve] Approval Email doesn't contain Password.I’ll take a stab at it $user ? — SO that didn’t work.
I’ve been able to get the custom message part added, just now have to add that personal touch and greet the user by First Name to make it come across as professional.
Thank you!
Forum: Plugins
In reply to: [New User Approve] Approval Email doesn't contain Password.@josh question, what code would I add to show the customers name, so the email greets them?
Thanks for your help.
Forum: Plugins
In reply to: [New User Approve] Customizing email message body@josh you wouldn’t happen to need any testers for this plugin, cause I really need to change my approved users email body to something different then the default automated message?
Forum: Plugins
In reply to: [New User Approve] Approval Email doesn't contain Password.After some investigation and playing around.. I discovered that Pw is included in email normally.
I am using a plugin called Formidable, and I found that if the user selected their password in the wholesale inquiry form, when an admin approves them for some reason the password they created changes to some auto generated password.
My original work around to this problem, what to remove password field from new user creation, thinking that when you approve the user it will then auto generate a password for them. BUT I was wrong. So I added the password field back to my form, but just set it to auto generate passwords instead of letting user create them, and it fixed problem.