Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 24 Current »

What is WooCommerce?

WooCommerce is a free Wordpress bolt-on shopping cart that lets customers buy your products, services and digital downloads online. Visit WooCommerce website for more information: http://www.woothemes.com/woocommerce/.

WordPress is free web software you can use to create a website or blog. The core software is built by hundreds of community volunteers with thousands of plugins and themes available to transform your site into almost anything you can imagine. Visit WordPress website for more information: http://wordpress.org

How do I use PayU with WooCommerce and which payment methods/services does it support?

You will need to install the PayU/WooCommerce module (also known as a plugin) on a working WooCommerce installation. This module is developed and supported PayU and uses PayU's redirect payment page as the integration method.

This plugin supports the following PayU payment methods and services

  • Credit Card
  • Credit Card Debit Order (Recurring)

How do I use install the PayU/WooCommerce extension?

Installation instructions can be found here.

Where do I find test credentials to test the module installation?

PayU has a dedicated test/sandbox/staging environment which developers can use to test integrations. All test details to test this module can be viewed here. Once you are satisfied with the test outcome please use the production credentials issued by PayU.

Who do I contact if I have technical integration queries?

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

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.

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