In other words – if we have the Main option “Send mail with credentials and other data” checked yes, but the Mail Options is set to “Deactivate WP Automatic email when user is created”, what happens?
I’ve been using your plugin for over 1.5 years and love it but I seem to forget what the difference is if I don’t actively test/use your plugin on a regular basis.
Thanks in Advance
]]>Hello,
I create an email, I send it but the sending rate remains at 0%.
When I try the “test” send in the settings everything goes well.
Can you help me?
Sincerely
Thibaud`
wpmem_login_form_rows
let it change the Login form, it changes the Login form ok.[wpmem_form password]
then the Reset Password form is the same as the Login form, it is changed by wpmem_login_form_rows. There is a silly thing here when the Login Form and Reset Password are affected by wpmem_login_form_rows
.add_filter('wpmem_login_form_rows', 'my_login_form_rows_filter', 10, 2);
function my_login_form_rows_filter($rows, $action)
{
$rows[0] = array(
'row_before' => '',
'label' => '<label for="log">メールアドレス</label>',
'field_before' => '<div class="div_text">',
'field' => '<input name="log" type="text" id="log" value="" class="username" required="">',
'field_after' => '</div>',
'row_after' => '',
);
$rows[1] = array(
'row_before' => '',
'label' => '<label for="pwd">パスワード</label>',
'field_before' => '<div class="div_text">',
'field' => '<input name="pwd" type="password" id="pwd" class="password valid" required="" aria-invalid="false">',
'field_after' => '</div>',
'row_after' => '',
);
return $rows;
}
2. Is there a way to send a link to change the password to the user when clicked to be redirected to a page that allows to set a new password yourself. Instead of sending new password to user email?
Thank everyone!
I know you recommend flamingo for saving entries into the database but I’d like to create this custom CPT for saving the entries as I’m planning to make the location of the CPT easily accessible for the client and some other custom setup as per the client requirements
I can work with Ajax in WordPress, I just need to know how to present the contact form from sending message and when all checks out (I.E verification and CPT has been updated), the CF7 can send user’s message and give user’s the appropriate CF7 response
I don’t know if CF7 uses something like this;
<?php
//if all Ajax checks out and updated CPT;
echo '1'; //response
else
echo '0'; //response if CPT is not updated
Die;
Then in the jQuery file that receives response
If response is '1', then send the message and give a success message
(I don't know if CF7 has something like WPCF7->send_mail )
and if response is '0', which means the CPT wasn't updated for some reason, message will not be sent and user Wil receive the CF7 error message
I have basic knowledge of what I want to do but not sure how or the right way to go about it. Please help
]]>I’m using:
I enable the mail notification option in WP-Pro-Quiz, to receive the test results by mail.
When I’m trying to send mail with WP-Mail-SMTP, it’s working but when I finish a Quizz, I receive nothing.
I have nothing in system logs and I don’t found WP-Mail-SMTP logs.
I tried to find an issue but I found nothing!
Could you please help me :'(?
Thank you.
Best regards,
Anyone else can confirm this?
]]>Looks like it tries to attach an image at the end of the text. However, the image link is broken. Some other person tried to make this work for himself by fixing the php code. However, modifying php code is not for everyone. Plus, one shouldn’t have to do that.
]]>