• Resolved montebianco

    (@montebianco)


    Since recent update our footer menu that has a link to My Account is showing this error:

    Warning: strpos(): Empty needle in …/wp-content/plugins/woo-poly-integration/src/Hyyan/WPI/Endpoints.php on line 231

Viewing 3 replies - 1 through 3 (of 3 total)
  • In line 231 of the Endpoints.php file replace
    if (false !== ($pos = strpos($item->url, $value))) {
    with
    if ($value && false !== ($pos = strpos($item->url, $value))) {

    I will prepare a bug fix for this issue (and other stuff) for a future release (probably 0.29).

    Thread Starter montebianco

    (@montebianco)

    Thanks, fixed with above line of code.

    Good to hear it. Please mark this thread as solved/resolved,

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Empty needle error after update’ is closed to new replies.