Please can we have a filter added to the get_title() method to allow the title to be dynamically altered when required?
]]>From another side, the buddypress email notifications work properly.
Do you have cases like this?
Do you have a fixing for this problem?
Kind regards
G.Aloe
]]>Thanks,
Daniel
https://www.ads-software.com/plugins/jetpack/
]]>I use WPBE to send HTML Email with templating in my WordPress and Contact form 7 plugin.
I manage event with WP Events with send HTML Parameters / use wp_mail so it put content_type to text/html and when hook action WPBE hook action phpmailer_init plays and method send_content_type
/**
* Always set content type to HTML
*
* @since 0.1
* @param string $content_type
* @return string $content_type
*/
function set_content_type( $content_type ) {
// Only convert if the message is text/plain and the template is ok
if ( $content_type == 'text/plain' && $this->check_template() === true ) {
$this->send_as_html = true;
return $content_type = 'text/html';
} else {
$this->send_as_html = false;
}
return $content_type;
}
private var send_as_html go to false, so no html template…
I have to force send plain text email to event manager to let WPBE play with correct content type..
Is the normal operation ? Why do not force directly send_as_html to true ? I don’t see all consequences …
It just a feedback of an happy WPBE user
Greats
https://www.ads-software.com/plugins/wp-better-emails/
]]>Verification URL: /login/?action=verifyemail&verification_code=SEI9Z95WXL564EISPXQ1
No page named mydomain.com/login exists.
I noticed something strange when I disable Redux and use WordPress in-built user registration. The email I got has the following form:
username:something
password:something
/login/
So, there is this “/login/” bit again. Normally, I guess this would be a link back to the login form of the site.
Thus, I suspect I made a change somewhere where I broke some configuration file. Unfortunately, it doesnt come as a surprise since over the last few days I have played with all sorts of plugins – while trying to have a decent registration form and to hide wp-Login and wp-admin from users.
A few of the plugins I tried with redux:
theme my login
better wp security
wp-members
peter’s redirect
wp hide admin bar
A few hours ago, Redux was not even able to send emails. I had to disable it, clean wp_options, re-install it. Now, it is sending emails, but with the problem I explained above. I was expecting that this also fix the /login/xxx issue. No luck! (the issue was present before wp_option cleanup).
I do not use any other plugin or code related to registration other than Redux at the moment.
I’d appreciate all help.
https://www.ads-software.com/extend/plugins/register-plus-redux/
]]>Here’s the scenario:
1. A post exists on the site named POST ONE and it was written by, say, the main admin account
2. The admin goes into the Post Editor and marks AUTHOR JIM as the author of POST ONE, instead of the admin himself
3. When the post is updated, WordPress sends an email to the author.
Anyone know of a plugin or a function to do this?
]]>