• Hello. I’m receiving this error on one of my products:

    Fatal error: Call to undefined method WooCommerce::add_error() in /home/benefab/public_html/wp-content/plugins/woocommerce-payjunction-gateway/gateway-payjunction.php on line 376

    Website is benefabproducts.com. The product is the Poll Pad. Woocommerce version 2.3.5. Payjunction Gateway version 2.1.

    Any help would be appreciated.

    https://wordpress.org/plugins/woocommerce-payjunction-gateway/

Viewing 3 replies - 1 through 3 (of 3 total)
  • We had the same issue with our site. The payjunction team say they are going to release a new version tonight. In the meantime, I replaced all the add_error() calls with wp_add_notice calls. For example:

    removed this line:
    $woocommerce->add_error(__('The selected credit card type is not available for your billing country', 'woothemes'));

    and added:
    wc_add_notice('The selected credit card type is not available for your billing country', 'error' );

    Gobble Logic

    (@gobblelogic)

    I don’t think they’ve pushed anything to the repository here yet, but I downloaded a “fresh” copy from their site and that resolved my issue: https://company.payjunction.com/support/WooCommerce

    The updated version as linked by Gobble Logic (https://company.payjunction.com/support/WooCommerce) is written with PHP 5.5 in mind — the plugin uses the PHP “empty” function to check non-variables, which was not supported until PHP 5.5, resulting in “Fatal error: Can’t use method return value in write context”

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fatal Error’ is closed to new replies.