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 LAB] Compatibility with One Click Upsell Funnel for 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.

Hi,

I would like to request compatibility with"One Click Upsell Funnel for Woocommerce."

Currently the discounted price is displaying incorrectly on the upsell page.

I have consulted them and they said woocs is filtering the price value many times so their plugin is unable to show the correct response price.

Regards
Manhua

Hello Manhua

Unfortunately this plugin is not popular.

I will pass this  to the developers, they will check the appropriateness of adapting this third party plugin

Hello

Try  in  file -"\wp-content\plugins\woocommerce-currency-switcher\classes\woocs_after_33.php" - add  code - https://c2n.me/49Zh45L.png

if(function_exists('mwb_upsell_change_product_price')){
$product = mwb_upsell_change_product_price( $product);
}

And  in  file -"\wp-content\plugins\woocommerce-one-click-upsell-funnel-pro\includes\class-woocommerce_one_click_upsell_funnel_pro-global_functions.php" - add  code - https://c2n.me/49ZheW7.png

if (class_exists('WOOCS'))
{
global $WOOCS;
$currency=$WOOCS->current_currency;
if($currency!=$WOOCS->default_currency){
$currencies=$WOOCS->get_currencies();
$payable_price=$WOOCS->back_convert($payable_price,$currencies[$currency]['rate']);
$sale_price=$WOOCS->back_convert($sale_price,$currencies[$currency]['rate']);
$regular_price=$WOOCS->back_convert($regular_price,$currencies[$currency]['rate']);
}

}

and  do a test

Hi,

Thank you so much!

I notice the solution is for the pro version not free version.

I will test once I obtained the pro version.

 

Regards
Manhua

 

Hello Manhua

Ok!  Welcome;)