• Resolved conradude

    (@hellodracon)


    Hello, since last update, there is this error :
    Warning: Undefined array key “scheme” in …/wp-content/plugins/woo-product-filter/modules/woofilters/mod.php on line 296
    Warning: Undefined array key “host” in …/wp-content/plugins/woo-product-filter/modules/woofilters/mod.php on line 296

    Fixed it by replacing line 296 of woo-product-filter/modules/woofilters/mod.php :
    $baseUrl = $urlParts['scheme'] . '://' . $urlParts['host'] . (isset($urlParts['path']) ? $urlParts['path'] : '');
    with
    $baseUrl = (isset($urlParts['scheme']) ? $urlParts['scheme'] : '') . '://' . (isset($urlParts['host']) ? $urlParts['host'] : '') . (isset($urlParts['path']) ? $urlParts['path'] : '');

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter conradude

    (@hellodracon)

    That doesn’t fix it. There an issue with this part. I think it needs an update.

    • This reply was modified 1 year, 2 months ago by conradude.
    Plugin Author WBW Plugins

    (@woobewoo)

    Hello @hellodracon,

    It looks like the error is related to your theme, a small conflict.
    We have added a fix to the plugin code in the repository.
    Remove the plugin installed on your site, then reinstall it from the WordPress repository.
    The filter configurations will remain.

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

The topic ‘Error since last update’ is closed to new replies.