Viewing 7 replies - 1 through 7 (of 7 total)
  • Same here… ??

    Please help, the plugin just disappeared in 4.3.
    even deactivating and reactivating does not help… ??

    Please 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.www.ads-software.com/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 );

    Plugin Author Vivek Marakana

    (@vivekmarakana)

    Please update the plugin. It has been made compatible with the latest WP version. Thank you for your patient.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘WordPress 4.3’ is closed to new replies.