Vitaly Nikolaiev
Forum Replies Created
-
Seems like fixed in 1.1.8
Forum: Plugins
In reply to: [WP Cerber Security, Anti-spam & Malware Scan] Add action on ip unlockingI was able to find another solution here – used
\CRB_Events::add_handler( ‘ip_event’, … ); to set up own handler for unlocking IP.
But still, need ‘cerber_ip_locked’ to be executed before Cerber inits to catch IP lockouts…let me know if you have better ideas
Forum: Plugins
In reply to: [Chronosly Events Calendar] Excerpt utf cut problemHi!
Thanks for answer !1. I’m talking about SHORtening (not sort 🙂 ) See screenshot
http://www.awesomescreenshot.com/image/813939/d83d92c3e29aa7b5305a71016e237a202. I mean when no featured image is selected for event – i think container div. featured_image should not be in HTML. Check screenshot from #1
Vitaly.
+1
You need to change.
wp-user-avatar/includes/class-wp-user-avatar-functions.php : line 358
$alt = $user->display_name;
to
$alt = $alt ? $alt : $user->display_name;
And line 338
$alt = $id_or_email->comment_author;
to
$alt = $alt ? $alt : $user->comment_author;Hope this will be fixed in next release.