PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

[WOOCS LABS] - Addaptation WooCommerce Product Add-Ons

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hi Pablo,

Thank you for agreeing to help with this. I will add the plugin files on the private section of this.

Thanks,

Jonny

Hello Jonny

ОК! I added the plugin to the adaptation queue

Hello Jonny

I checked  plugin:

1)In file \plugins\woocommerce-product-addons\includes\class-product-addon-cart.php

add this code ( https://c2n.me/40HWTkd.png )

$price_temp = $addon['price'];
if (class_exists('WOOCS')) {
global $WOOCS;
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency AND $WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$price_temp = $price_temp * $rate;
}
}

AND change code ( https://c2n.me/40HWWsK.png )

 

2) In file \wp-content\plugins\woocommerce-product-addons\includes\class-product-addon-display.php add code ( https://c2n.me/40HX0Wb.png )

$suffix =""; //woocs fix
$woocs_is_multiple = 0;
if (class_exists('WOOCS')) {
global $WOOCS;
$woocs_is_multiple = $WOOCS->is_multiple_allowed;
}

AND add code ( https://c2n.me/40HX3WA.png )

'woocs_is_multiple' => $woocs_is_multiple,

 

3) in file plugins\woocommerce-product-addons\assets\js\addons.js add code ( https://c2n.me/40HX7ax.png )

var woocs_exists = true;
try {
if (woocs_current_currency)
woocs_exists = true;
} catch(e) { woocs_exists = false; }
if (woocs_exists){
if (woocs_current_currency != undefined && woocs_current_currency['rate'] != undefined && woocommerce_addons_params . woocs_is_multiple == 0) {
product_price = product_price * woocs_current_currency['rate'];
}
}

AND add this code ( https://c2n.me/40HX974.png )

var woocs_exists = true;
try {
if (woocs_current_currency)
woocs_exists = true;
} catch(e) { woocs_exists = false; }
if (woocs_exists){
if (woocs_current_currency != undefined && woocs_current_currency['rate'] != undefined && addon_cost != undefined) {
addon_data.cost = addon_data.cost * woocs_current_currency['rate'];
addon_data.cost_raw = addon_data.cost_raw * woocs_current_currency['rate'];
}
}

4) In functions.php add code ( https://c2n.me/40HXbmR.png )

add_filter('woocommerce_product_addons_option_price', 'woocs_compatib_woopd', 99990, 4);
add_filter('woocommerce_product_addons_price', 'woocs_compatib_woopd', 99990, 4);

function woocs_compatib_woopd($price, $option, $i, $type) {
if ($option['price'] > 0 AND class_exists('WOOCS')) {

global $WOOCS;
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency AND $WOOCS->is_multiple_allowed) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$price = '(' . wc_price( WC_Product_Addons_Helper::get_product_addon_price_for_display($option['price'] * $rate)) . ')';
}
}
return $price;
}