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

WP Moneybookers Shortcodes

描述

Add a moneybookers button (using shortcode) into your pages/posts
Edit the wp-content/plugins/wp-moneybookers-shortcodes/wp-moneybookers-shortcodes.php for configure the plugin.
Or use class for integration moneybookers into your page.

Shortcode

Insert the button in your pages or posts with this shortcode
[moneybookersBtn production=”true” amount=”50″ detail1_description=”Product Identity:” detail1_text=”T-Shirt Webtux”]

Integration moneybookers into your page

Add this code to your template page.

$a = new WpMoneybookersShortcodes("contact@webtux.info");   // account moneybookers email
/*
// If you want custom your page : payment made, payment cancelled and process payment.
$a->setReturnUrl(get_bloginfo('template_url')."/moneybookers_payment_made.php");        // return page (url of the page is created for receipt of payment made) 
$a->setCancelUrl(get_bloginfo('template_url')."/moneybookers_payment_cancelled.php");   // cancel page (url of the page is created for receiving payment canceled)
$a->setStatusUrl(get_bloginfo('template_url')."/moneybookers_process_payment.php");     // status page (url of the page is created for receiving the payment process)
*/
$a->setProduction(true);                        // false:test, true:production
$a->setLanguage("FR");                          // location (ex: EN, DE, ES, FR, IT, ...)
$a->setCurrency("EUR");                         // currency (ex: EUR or GBP or ...)
$a->setAmount(10);                              // price product (ex: 39.60 or 39.6 or 39)
$a->setDetail1Description("Product ID: ");      // description (ex: Product ID:)
$a->setDetail1Text("T-Shirt Webtux");           // text (ex: T-Shirt Webtux)
echo $a->getMoneybookersBtn();                  // show your moneybookers button

See the Changelog for what’s new.

Arbitrary section

For information contact me

Usage

[moneybookersBtn production=”true” amount=”50″ detail1_description=”Product Identity:” detail1_text=”T-Shirt Webtux”]

Moneybookers official manual

Official page
Integration manual en fr
Handbook of automated payment interface en fr

螢幕截圖

  • Active the extension wordpress admin.
  • Page integration shortcode more informations French web agency.

安裝

  1. Download the plugin Zip archive.
  2. Upload ‘wp-moneybookers-shortcodes’ folder to your ‘/wp-content/plugins/’ directory
  3. Activate the plugin through the ‘Plugins’ menu in WordPress
  4. Edit wp-moneybookers-shortcodes.php and define your settings.

常見問題

how use the plugin

With the shortcode “moneybookersBtn” into your pages/posts.
Ex: [moneybookersBtn production=”true” amount=”50″ detail1_description=”Product Identity:” detail1_text=”T-Shirt Webtux”]
You can create multiple shortcode.

評價

There are no reviews for this plugin.

貢獻者及開發者

“WP Moneybookers Shortcodes” 是一個開源的軟體。以下的人對這個外掛作出了貢獻。

貢獻者

將 WP Moneybookers Shortcodes 外掛本地化為台灣繁體中文版。

對開發相關資訊感興趣?

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

修改日誌

0.2

  • add class access for manage button into your file (ex: page.php)

0.1

  • Original version released to wordpress.org repository