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

the WOOCS switcher won't change the price of a addon on product page, I'm using Product addons by woocommerce.

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.

I've done some research and found tis reply from 2019, but seems Like the code has change from then and I'm not a programer  so I got lost. Can I have some help. 

 

Hello Marion

Please try  this  code:

1)In file \plugins\woocommerce-product-addons\includes\class-product-addon-cart.php add next code ( https://c2n.me/40HWQrb.png ):

if (class_exists(‘WOOCS’)) {
global $WOOCS;
if ($WOOCS->is_multiple_allowed) {
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {

$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent][‘rate’];
//$price = $price / $rate;
}
}
}

AND 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 )
VIDEO – https://c2n.me/40Bz0xc

 

if ( $addon[‘price’] && ‘percentage_based’ !== $price_type && 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’];
$addon[‘price’]=$addon[‘price’]*$rate ;
}
}

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;
}

Hello

Please  drop  me  wp-admin+FTP to  your  test  site - https://share.pluginus.net/image/i20230222134241.png ->https://share.pluginus.net/image/i20230222134615.png