All Purpose Currency Converter

Convert any forex (to allowed PayPal currencies) for any type of e-commerce system eventualities

FEATURES

  • Convert any forex (to allowed PayPal currencies) for any type of e-commerce system eventualities
  • Because of the design of the plugin it nearly helps any e-commerce answer that’s accessible for WordPress
  • Presently it presents 4 distinct shortcodes that can be utilized for customized integration:
    1. Exchangerate [exr] = 0.00008 This shortcode retrieves the change price. Utilization in PHP: do_shortcode(‘[exr]’)
    2. Currency couple [cc] = IDR/USD This shortcode retrieves the change price currencies. Utilization in PHP: do_shortcode(‘[cc]’)
    3. Tource forex ISO code [sc] = IDR This shortcode retrieves the supply forex ISO code. Utilization in PHP: do_shortcode(‘[sc]’)
    4. Goal forex ISO code [tc] = USD This shortcode retrieves the goal forex ISO code. Utilization in PHP: do_shortcode(‘[tc]’)
  • Routinely replace the forex change price between your store forex and the specified PayPal forex with WP-crontrol (or another cron plugin), your internet hosting servers cron job, or a third get together cron job service.
  • Precise Currency Alternate Charges shall be retrieved from “Open Alternate Charges API”, YAHOO Finance, or European Central Financial institution.
  • Sends notification electronic mail to the admin’s electronic mail deal with when the change price has been up to date.
  • Logs the actions right into a log file.
  • Software-tip assistance on each merchandise.
  • Translation Prepared
  • Simple to Setup
  • Provides warning for unsupported php.ini settings.

MANDATORY SETTINGS

  1. Discover the settings web page “Alternate Charges” in WordPress settings menu.
  2. Choose your exchangerate supplier (Yahoo will do for many functions)
  3. Optionaly register a legitimate API ID and activate it with the radio button or use Yahoo Finance, or European Central Financial institution as your change price supplier
  4. First time solely: Set your supply forex ISO code and choose your goal forex
  5. After saving this settings. the present exchangerate shall be retrieved.
  6. Settle for the steered change price proven within the button.
  7. Save settings.

OPTIONAL SETTINGS

AUTOMATIC EXR UPDATES

For computerized updates you could have three choices.
One choice is to make use of an appropriate Cron-Job plugin like “WP-Crontrol” and register the hook “ppcc_cexr_update” to your desired replace frequency.
An alternative choice is to name the given AJAX url (http://yourdomain.com/wp-admin/admin-ajax.php?action=ppcc&ppcc_function=cexr_update) out of your internet hosting servers cron job or a web-based cron job service like EASYCRON.COM for a trouble free answer.
(This ensures an correct timing for the upates.)

LOG / EMAIL NOTIFICATION

If the checkbox “log” is checked an electronic mail notification shall be despatched to the admin’s electronic mail deal with each time the change price is up to date with date, time, and change price worth.
Moreover the log file shall be populated with each motion the plugin does.
The log file may be discovered and considered within the indicated location whereas utilizing your FTP shopper.
For added comfort you may open the log-file in a pop up window.
To make this work add: “Enable from <your servers ID shall be indicated within the plugin>” to the .htaccess file inside ”../plugins/woocommerce/logs/”

How can I combine this?

As proven on the backend there are a number of shortcodes that can be utilized each in PHP or on the entrance finish. In Normal one wants to determine the PayPal IPN checkout course of and whole calculation in a particular plugin.
For instance „Automobile rental System 4.3“ has the IPN calculation in file display-step5-booking-process.php. Starting with line 172 one can see how the combination with APCC may be realized:

//$objPayPal->addField('currency_code', $objCore->getConfig('currency_code'));
$targetcurrency = do_shortcode('[tc]');
$objPayPal->addField('currency_code', $targetcurrency ;//get the goal forex
//$objPayPal->addField('quantity', number_format(floatval($priceSummary['overall']['total_pay_now']), 2, '.', ''));
$Abstract = $priceSummary['overall']['total_pay_now'] * do_shortcode('[exr]');//do the conversion
$objPayPal->addField('quantity', number_format(floatval($Abstract), 2, '.', ''));

Leave a Reply

Your email address will not be published.