這個外掛並未在最新的 3 個 WordPress 主要版本上進行測試。開發者可能不再對這個外掛進行維護或提供技術支援,並可能會與更新版本的 WordPress 產生使用上的相容性問題。

MobCard Woo Payment Gateway

外掛說明

MobCard Woo Payment Gateway extends WooCommerce payment options by adding the mobilPay Card Gateway.
This plugin is meant to be used by merchants in Romania.

Features:

  • 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).

Donate!

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.

GitHub

You can also find this project on GitHub. Feel free to contribute, fork or pull requests.

螢幕擷圖

  • Backend: WooCommerce > Settings > Checkout screenshot-1.jpg

  • Frontend: Your website checkout page screenshot-2.jpg

安裝方式

  1. Upload mobcard-woo-payment-gateway to the /wp-content/plugins/ directory.

  2. Place your private.key and public.cer files from your mobilPay merchant account into certificates folder of the plugin.

  3. Activate the plugin through the Plugins menu in WordPress.

  4. Configure your settings under WooCommerce > Settings > Checkout > mobilPay Card option panel.

常見問題集

Who can use this plugin?

Any merchant that contracted mobilPay credit/debit card payment processing services.
Basically romanian companies.

Can I take payments from PayPal?

No. You can only take payments from credit/debit card processed by mobilPay only.

How can I add my merchant certificates?

Sandbox:

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.

Live:

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.

Note:

Don’t rename .key and .cer files and make sure that XXXX-XXXX-XXXX-XXXX-XXXX matches your Merchant ID.

Payment redirect is not working. Why?

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.

使用者評論

2022 年 12 月 3 日
I used this plugin since I can remember, it was perfect until I wanted to upgrade the server to php 8. Under PHP 8.1 (and probably 8.0) it gives a fatal error when trying to make the payment. Also, it does’t open the link to the Netopia website when trying to make the payment. Fatal error: Uncaught ArgumentCountError: openssl_seal() expects at least 5 arguments, 4 given in…. … /wp-content/plugins/mobcard-woo-payment-gateway/includes/request/class-mobilpay-abstract.php on line 221
2022 年 8 月 15 日
Even if it hasn’t been updated in years, it still works! LE: Tested and working on Wordpress v6.0.1 and WooCommerce 6.8.0.
2017 年 4 月 10 日
It’s quite easy to configure, and integrates seamlessly into woocommerce. Absolutly free, without any nasty surprise. I applause you, dev.
閱讀全部 4 則使用者評論

參與者及開發者

以下人員參與了開源軟體〈MobCard Woo Payment Gateway〉的開發相關工作。

參與者

將〈MobCard Woo Payment Gateway〉外掛本地化為台灣繁體中文版

對開發相關資訊感興趣?

任何人均可瀏覽程式碼、查看 SVN 存放庫,或透過 RSS 訂閱開發記錄

變更記錄

1.0.1

  • Fixed empty return url issue in some cases
  • Tested up to WP 5.3 with WooCommerce 3.8.1

1.0

  • Initial release (Tested up to WP 4.7 with WooCommerce 2.6.11)