Support » Plugin: WooCommerce Piwik integration » Encounter a bug:

  • Chrome (Source):
    [‘Lys”, ”Fyrfadslys’], Error: “Uncaught SyntaxError: Unexpected string”

    Which is due to wrong imploding.

    In file: class-wc-piwik.php:
    371 return sprintf(“[%s]”, implode(“‘, ‘”, $categories));

    Should be replaced with:
    371 return sprintf(“[%s]”, implode(“, “, $categories));

    Cheers,
    Jimmi Nielsen

    https://wordpress.org/plugins/woocommerce-piwik-integration/

Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Encounter a bug:’ is closed to new replies.