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

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.

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