vyskoczilova / woocommerce-payforpayment

WordPress plugin WooCommerce Pay for Payment
13 stars 10 forks source link

Add WOOCS (WooCommerce Currency Switcher) compatibility #62

Closed MartyQek closed 3 years ago

MartyQek commented 3 years ago

// Add compatibility to WOOCS by adding this to file /inc/class-pay4pay.php under line 228 (By Royalonogy)

if(class_exists('WOOCS')) {
    global $WOOCS;
    $cost = $WOOCS->woocs_exchange_value(floatval($cost));
}
vyskoczilova commented 3 years ago

Hi, as I said in the email - please create a new class for that and use appropriate filters to add support to this plugin. This keeps it clean and easy to update in the future.

As a base you can use one of the existing classes:

And please create a pull request for the master branch.