Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • 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 );

    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.

Viewing 2 replies - 1 through 2 (of 2 total)