On dashly.php:24
:
add_action( 'init', array( 'DashlyBase', 'init' ) );
which in turn runs wp-content/plugins/dashly/includes/class-dashlybase.php:41
DashlyBase::add_hooks()
your wp_login
action gets added:
add_action( 'wp_login', array( 'DashlyHooks', 'user_login' ) );
Unfortunately, init
runs after WordPress’s determine_current_user
which is where many plugins run wp_set_current_user()
and the corresponding do_action( 'wp_login' ... )
To remedy this, just change dashly.php:24
to:
DashlyBase::init();
]]>
We are having some trouble with the Dashly plugin as it is essentially not loading when a website user clicks to start a chat from their mobile device.
When one of our Dashly users starts the chat, the alert is not always presented. When it is, the window loads fine, but the icons are not always visible.
This was on both WP 5.4.1 and 5.4.2.
]]>