• After I installed WP 4.3 I was getting this error:
    “Notice: The called constructor method for WP_Widget is deprecated since version 4.3.0! Use __construct() instead. in /home/automobilemd/public_html/wp-includes/functions.php on line 3457

    Kindly note that WP_Widget is deprecated in wordpress 4.3 and therefore you are getting the error.

    WordPress has suggested to use “__construct()” in functions.php.”

    After deactivating one by one I found that the Transposh was the culprit causing all the problems for my 12 sites.

    Request adjust your coding to work with the new 4-3 WordPress upgrade.

    Thanks

    Armando sends…

    https://wordpress.org/plugins/transposh-translation-filter-for-wordpress/

Viewing 4 replies - 1 through 4 (of 4 total)
  • I’d also second this request! If I could manage it on my own, I would do it and post the adjusted code.

    I was getting this error too.

    Any update coming soon?

    which is your hosting? with hostgator to me is all right with wordpress 4.3.1

    This deprecation notice is given when the DEBUG is turned on.

    To fix the issue, you have to change the line 86 in:
    plugins/transposh-translation-filter-for-wordpress/wp/transposh_widget.php
    from
    $this->WP_Widget('transposh', __('Transposh'), $widget_ops, $control_ops);
    to
    $this->__construct('transposh', __('Transposh'), $widget_ops, $control_ops);

    Hopefully this is not another dead plugin project…

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