Please help, the plugin just disappeared in 4.3.
even deactivating and reactivating does not help… 🙁
Hello,
function WP_Widget deprecead in wordpress4.3.
two possibility shorcode in widget text or
delete and change function and register widget :
<backticks>
/**
* Widget setup.
*/
public function __construct() {
parent::__construct(
‘tabbed-login-widget’,
__(‘Tabbed Login Widget’,’tabbed-login’),
array( ‘description’ => __( ‘Display Tabbed Login/Register/LostPassword form in sidebar.’,’tabbed-login’), )
);
}// end constructor
// Register the Widget
add_action( ‘widgets_init’,’tabbed_load_login_widget’,1 );
<backticks>
Work perfectly in my site.
Understood nothing from what you wrote 🙁 please Tell us what and in what file need to edit. How to do it?
Hello,
Read this article for modified Class in tabbed-login.php file :
https://codex.ww.wp.xz.cn/Widgets_API
class tabbed_login_Widget extends WP_Widget {
/**
* Widget setup.
*/
public function __construct() {
parent::__construct(
‘tabbed-login-widget’,
__(‘Tabbed Login Widget’,’tabbed-login’),
array(
‘description’ => __( ‘Display Tabbed Login/Register/LostPassword form in sidebar.’,’tabbed-login’),
‘classname’ => ‘tabbed-login-widget’
)
);
}// end constructor
// Register the Widget
add_action( ‘widgets_init’,’tabbed_load_login_widget’,1 );
Please update the plugin. It has been made compatible with the latest WP version. Thank you for your patient.