wp-newbee
Forum Replies Created
-
Forum: Plugins
In reply to: [Theme My Login] pluggable errorSolved by adding ob_start(); before my code.
Forum: Plugins
In reply to: [Theme My Login] pluggable errorHello,
This error is not because of your plugin. It takes me back to my functions.php
So, sorry. I am closing this ticket, but if anybody has any idea I’ll appropriate the help.Best
AzitaForum: Plugins
In reply to: [Uncanny Toolkit for LearnDash] breadcrumb code does not working in php fileHi,
Problem is solved. I was literally using <uo_breadcrumbs()> ??
I put in php format and worked.
Thank you.Best,
Azita- This reply was modified 7 years, 1 month ago by wp-newbee.
Hi Jordan,
Thank you so much. I found the following and also works: [events_list post_category=123]
Thank you again.Best,
AzitaForum: Reviews
In reply to: [GoToWP] Awesome SupportI cannot be agree more!
Forum: Plugins
In reply to: [GoToWP] After updating to Version 3.0.2 – WP 4.8 no date and event’s name…Hi Brandon,
Sorry I was not clear. Yes, previously the Register for a Webinar would be replaced with the form’s title. Right now It showing both. I apologize if this is part of part of your new design, I don’t mean to be picky. I totally can use it as is.
Sorry again for miss communication.Thank you.
Best,
AzitaForum: Plugins
In reply to: [GoToWP] After updating to Version 3.0.2 – WP 4.8 no date and event’s name…Hi Brandon,
I updated it to the latest Version 3.0.4 and you can see the result below. Still has an extra row above the event title.
Thank you again.
Best,
Azita- This reply was modified 7 years, 4 months ago by wp-newbee.
Forum: Plugins
In reply to: [GoToWP] After updating to Version 3.0.2 – WP 4.8 no date and event’s name…Thank you Brandon for the quick turnaround. I see the name and the date, however, still showing the extra row please see the screen shot.
Thank you again.
You are the best.Azita
Oops, sorry, I am using WP 4.4.2.
I also checked the code in pluggable.php
if ( !function_exists(‘wp_password_change_notification’) ) :
/**
* Notify the blog admin of a user changing password, normally via email.
*
* @since 2.7.0
*
* @param WP_User $user User object.
*/
function wp_password_change_notification( $user ) {
// send a copy of password change notification to the admin
// but check to see if it’s the admin whose password we’re changing, and skip this
if ( 0 !== strcasecmp( $user->user_email, get_option( ‘admin_email’ ) ) ) {
$message = sprintf(__(‘Password Lost and Changed for user: %s’), $user->user_login) . “\r\n”;
// The blogname option is escaped with esc_html on the way into the database in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);
wp_mail(get_option(‘admin_email’), sprintf(__(‘[%s] Password Lost/Changed’), $blogname), $message);
}
}
endif;
the email user is receiving has nothing to do with this.
Sorry, for multiple post, I am just trying to figure where can stop user receiving the password changed email.
Thank you.Best,
AzitaHi,
On ad-ad-integration.php I see this
/* Since WP 4.3 we have to disable email on password and email change */
add_filter(‘send_password_change_email’, ‘__return_false’);
add_filter(‘send_email_change_email’, ‘__return_false’);I am still using WP 4.2.2
so, please clearly that if I need to wait for WP update to solve this problem.
Thank youForum: Plugins
In reply to: [Subtitles] Subtitle shows twice after I turned off n on the pluginOK, I figured what was wrong.
I had this data-text=”<?php the_title(); ?>” in my twitter code. So, when I removed it no code will show before loading social media buttons.
Thank youForum: Plugins
In reply to: [Subtitles] Subtitle shows twice after I turned off n on the pluginHi Guys, So I was able to figure what was the issue for displaying it twice.
When I was messing around I added this code <?php if (function_exists(‘the_subtitle’)){ the_subtitle(); }?> next to <?php the_title() ;?> and that was the issue.But still love to know how I can fix the social media display issue. I am not using any plugin for them. I took the code from each social media, placed it and styled it. Very basic.
Thank you again.
Forum: Fixing WordPress
In reply to: Date is one day off in all my sitesSorry, my bad. I think I was a day ahead :). Date is fine.
Thank you! It fixed.
Forum: Plugins
In reply to: [GoToWP] Confirmation pageAlso make sure the page id in the shortcode is matching the thank you page id
[register_free_webinar webid=xxxx pageid=thank you page id]