Extends WooCommerce payment options by adding the mobilPay Card Gateway. This plugin is meant to be used by merchants in Romania.
- 100% FREE TO USE (GPLv2 license).
- Integrates mobilPay card payments service with your WordPress + WooCommerce online shop.
- Accepts payments with Visa and Mastercard credit/debit cards.
- Handles IPN responses and automatically changes order status on your shop in real time (confirmed/paid or failure messages, even refunds).
- Multilanguage support (romanian translation included).
- Upload
mobilpay-card-gateway-for-woocommerce
to the/wp-content/plugins/
directory. - Place your
private.key
andpublic.cer
files from your mobilPay merchant account intocertificates
folder of the plugin. - Activate the plugin through the
Plugins
menu in WordPress. - Configure your settings under
WooCommerce > Settings > Checkout > mobilPay Card
option panel.
Any merchant that contracted mobilPay credit/debit card payment processing services. Basically romanian companies.
No. You can only take payments from credit/debit card processed by mobilPay only.
If you want to test the plugin under sandbox enviroment, upload your testing private.key
and public.cer
files into certificates
folder of the plugin.
These certificates should look like this: sandbox.XXXX-XXXX-XXXX-XXXX-XXXXprivate.key
and sandbox.XXXX-XXXX-XXXX-XXXX-XXXX.public.cer
.
Upload your live private.key
and public.cer
files into certificates
folder of the plugin.
These certificates should look like this: live.XXXX-XXXX-XXXX-XXXX-XXXXprivate.key
and live.XXXX-XXXX-XXXX-XXXX-XXXX.public.cer
.
Don't rename .key
and .cer
files and make sure that XXXX-XXXX-XXXX-XXXX-XXXX
matches your Merchant ID.
WooCommerce plugin fails to load jQuery Cookie JavaScript due to current Mod_Security ruleset on your web server. Files: jquery.cookie.js
and jquery.cookie.min.js
, located inside folder /plugins/woocommerce/assets/js/jquery-cookie/
may cause some issues with "Order" button and other minor template issues if not loaded properly.
To fix this small issue folow these steps:
Step 1: Login to FTP then rename files inside folder /plugins/woocommerce/assets/js/jquery-cookie/
:
jquery.cookie.js
into jquery_cookie.js
jquery.cookie.min.js
into jquery_cookie.min.js
Step 2: Inside folder /wp-content/themes/
find theme which is in use, for example, twentyfourteen then add following lines into functions.php
:
add_action( 'wp_enqueue_scripts', 'custom_woo_cookie_frontend' );
function custom_woo_cookie_frontend() {
global $post, $woocommerce;
$suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_deregister_script( 'jquery-cookie' );
wp_register_script( 'jquery-cookie', $woocommerce->plugin_url() . '/assets/js/jquery-cookie/jquery_cookie' . $suffix . '.js', array( 'jquery' ), '', true );
}
Now the JavaScript files jquery_cookie.js
and jquery_cookie.min.js
won't produce 404 errors due to Mod_Security module interference.
mobilPay Card Gateway for WooCommerce is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or any later version.
mobilPay Card Gateway for WooCommerce is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with mobilPay Card Gateway for WooCommerce. If not, see http://www.gnu.org/licenses/gpl-2.0.txt.
Some of the classes that make all the payment process possible are developed by ![NETOPIA mobilPay](NETOPIA mobilPay)
- Fixed empty return url issue in some cases
- Tested up to WP 4.7.2 with WooCommerce 2.6.14
- Initial release (Tested up to WP 4.7 with WooCommerce 2.6.11)
I put some of my free time into developing and maintaining this plugin. If helped you in your projects and you are happy with it, you can buy me a coffee.