dannybatista
Forum Replies Created
-
Line 354 on version 3.9 is what’s not letting the user email be sent! Well that and the fact that $plaintext_pass is empty but why is it empty??
354: if (!empty($plaintext_pass))
If you change the if statement to also allow your custom email to be sent even if $plaintext_pass is empty the user notification WILL send.
I did it like this:
354: if (!empty($plaintext_pass) || empty($plaintext_pass))
This won’t be able to include the password in the email because password is empty. Can somebody figure out why it’s continually empty now?
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] Doesn't workLine 354 on version 3.9 is what’s not letting the user email be sent! Well that and the fact that $plaintext_pass is empty but why is it empty??
354: if (!empty($plaintext_pass))
If you change the if statement to also allow your custom email to be sent even if $plaintext_pass is empty the user notification WILL send.
I did it like this:
354: if (!empty($plaintext_pass) || empty($plaintext_pass))
This won’t be able to include the password in the email because password is empty. Can somebody figure out why it’s continually empty now?
Line 354 on version 3.9 is what’s not letting the user email be sent! Well that and the fact that $plaintext_pass is empty but why is it empty??
354: if (!empty($plaintext_pass))
If you change the if statement to also allow your custom email to be sent even if $plaintext_pass is empty the user notification WILL send.
I did it like this:
354: if (!empty($plaintext_pass) || empty($plaintext_pass))
This won’t be able to include the password in the email because password is empty. Can somebody figure out why it’s continually empty now?
I’m getting the same issue. After testing in the admin console and manually adding users from the backend, the user is only getting the email if I select ” send user their password” before finishing creating the user.
Maybe the newest versions of wordpress changed something where when a user signs up on the frontend of the site, it’s not defaulting to sending them the password.
Experiencing the same issue on my site. Deactivated all plugins to confirm it was the Avatar plugin. It’s happening when I use the [avatar_upload] shortcode and I have the most recent version installed
I can go into the plugin and edit any code you’d like. There are not URL parameters submitted with the version I’m using.
Thanks!
Danny Batista
VuepointForum: Plugins
In reply to: [Posts 2 Posts] Search in admin connection boxI’m just trying to display extra meta information next to the title of the possible connections. I’ve been messing with box.php all day and still can’t figure it out. dotsdigits where you able to figure anything out that might help me display post meta in the default admin box?
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Purge policy on custom post tyeWould like some help on this as well. I need w3 total cache to purge the page cache on updates/edits to custom post types and it’s not happening.
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] RSS FeedI have purchased the pro version and love the plugin, but I’m finding the RSS feed to not be what I expected. I would like to use the RSS feed so that users can subscribe to upcoming events. /events/feed/ pulls the events but I would like to have more ability to order them, only show events that haven’t passed yet, etc. Can you guys offer any input or advice on what I can do now with events rss? (i.e., does this type of customization exist, should I be using a custom URL string to pull what I want, etc) Thanks guys!