Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Should you require assistance with installation and integration please feel free to contact our integration support team.

Note

UPDATE:

The WooCommerce development team has identified this as a framework related bug, which they have since managed to patch.

Please ensure that the current theme that your website implements, is compatible with the changes that they have applied.

SPECIAL NOTE REGARDING WOOCOMMERCE UNEXPECTED TOKEN ERROR

The fix for WordPress is within the currently active template's functions.php file.

The following code needs to be placed in the functions.php file of the active Wordpress theme.

If the merchant migrates between multiple themes, it is recommended that this function be placed in the functions.php file of these themes.

Please note that this code should be placed outside of any existing functions.

Code Block
languagephp
function disable_checkout_script(){
wp_dequeue_script( 'wc-checkout' );
}
add_action( 'wp_enqueue_scripts', 'disable_checkout_script' );