이 플러그인은 최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다. 워드프레스의 좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 있을 수 있습니다.

Currencyr

설명

Instead of traditional “calculator” looks converter, Currencyr take the advance of “tooltip” and sit right at the amount to allow user convert it. Support various exchange rates provider API running as WP Cron task and able to auto-determinate local currency of visitor. Currencyr also offers currency converter widget, shortcode and function.

See it in action at http://demo.firmanw.com/wp/currencyr.

Note: This plugin requires PHP 5.3.0 or later, do not ever try to install if you running the older version.

Features

  • Inline converter using Currencyr for jQuery
  • Various exchange rates providers – Yahoo!, Google, Open Exchange Rates, European Central Bank and FoxRates
  • Support database cache driven for fast response
  • WP Cron task scheduler enabled
  • Shortcode quick conversion support
  • Currency table and converter widget
  • Function for theme developer
  • Auto-determinate local currency via IP detection using IP2C
  • Support integration with various ecommerce plugins – WooCommerce, WP-eCommerce, Shopp and Easy Digital Downloads
  • Translation support

Shortcode

To enable the shortcode simply use [currencyr] and use the following syntax:

[currencyr amount=$amount <from=$code> to=$code<|$code>]
  • amount – The number that you wish to convert.
  • to – The currency code. Use “|” as separator for multiple conversion.
  • from (optional) – The currency code. If omitted the Base Currency from setting will be use.

Examples:
[currencyr amount=99.99 to=gbp]

[currencyr amount=99.99 from=aud to=gbp]

[currencyr amount=99.99 to=gbp|eur|cad]

Function Call

The conversion feature is available to call within templates or codes using either currencyr_exchange() or the_currencyr_exchange(). Both functions share the same arguments, the diferrent is the_currencyr_exchange() is only echoes the result automatically. You can call the functions as WordPress style or PHP with the following arguments:

  • amount – The number that you wish to convert.
  • to – The currency code.
  • from (optional) – The currency code. If omitted the Base Currency from setting will be use.

The code above is similar to:

<?php echo currencyr_exchange( array( 'amount' => 99.99, 'to' => 'cad' ) ); ?>

Also similar to:

<?php echo currencyr_exchange( 99.99, 'cad' ); ?>

Roadmap

  • Add exchange rates table page
  • Add custom currency support

Feedback

If you have any feedback, tweet @firmanw for fast response, or head over to the support forum.

스크린샷

  • Converter tooltip
  • The settings page
  • The widget

설치

  1. Install Currencyr either via the WordPress.org plugin directory, or by uploading the files to your server
  2. Activate the Currencyr through the Plugins menu in WordPress
  3. Go to Currencyr menu to get started
  4. You need to update rates to populate cache immediately, or let WP Cron do it

후기

이 플러그인에 대한 평가가 없습니다.

기여자 & 개발자

“Currencyr”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

자국어로 “Currencyr”(을)를 번역하세요.

개발에 관심이 있으십니까?

코드 탐색하기는, SVN 저장소를 확인하시거나, 개발 기록RSS로 구독하세요.

변경이력

1.0.4

  • Fixed wpdb error while retrieving WP e-Commerce configuration.

1.0.3

  • Fixed menu and page icon for HiDPI screen.
  • Fixed some URLs

1.0.2

  • Added functions to able to use conversion within templates/codes
  • Added handler when conversion return no result

1.0.1

  • Fixed settings page capability typo
  • Fixed widget number format
  • Fixed plugin URI

1.0

Initial release