Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor arunkushwaha87

    (@arunkushwaha87)

    I checked but couldn’t find the issue.
    Can you please share the file name with URL, in which you are getting errors?

    Thread Starter CrazySerb

    (@crazyserb)

    woocommerce-category-widget.php

    function woocommerce_category() {
    parent::WP_Widget…..

    needs to be changed to parent::__construct

    Look up the changes made in 4.3 or this error in Google, you’ll see what’s up.

    @crazyserb: correctly

    file: woocommerce-category-widget.php
    line: 35
    wrong:

    parent::WP_Widget(false, ... );

    right:

    parent::__construct(false, $name = __('Woocommerce Category listing', 'woocommerce_category') );

    Plugin Contributor arunkushwaha87

    (@arunkushwaha87)

    This deprecated issue is resolved in new version, so please update the plugin.

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

The topic ‘Doesn't work on WP 4.3’ is closed to new replies.