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

Wholesale suit patch

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.

Hello

Found this snippet of code: https://currency-switcher.com/wholesale-suite/
However, if you see a little bit up, there's another similar snippet. So I'm wondering is there anywhere else you'll need to put this snippet.

Can someone point all the places out?

Thanks!

Hello

Please  read  this - https://currency-switcher.com/woocs-labs/

Paste  wp-admin +FTP access - https://c2n.me/43SC6rb.png ->  https://c2n.me/42BAoj4.png

I will add this plugin to the adaptation queue

Ok, info provided.

Hello

Ok

I added this plugin to the adaptation queue

Hello, can you give an estimate of when this could be done? We're waiting on this to be able to launch.

If not soon, you could instruct on where to put that code and we can add it.

Thank you

Hello

The adaptation of this plugin is scheduled for May 14

 you could instruct on where to put that code and we can add it. - I am not responsible for third-party code and unfortunately I don’t know how to fix incompatibility without investigation

Hello

Please add  .htaccess   pswd + login

Done.

Hello

You  use paid  version  of  the  WOOCS - Paste your license key here - https://c2n.me/43SC6rb.png -> https://c2n.me/42HBIt7.png

Are we? Thought it was the free version. Where can I find the key?

Hello

To get license key - https://codecanyon.net/downloads  - https://c2n.me/46i7Aam.png

Ok, since it was a previous developer who added it we do not have it. Or can we find it on the site in a setting?

If not, can we buy a new version?

Hello

we do not support products without a license

If not, can we buy a new version? -  Yes

 

Ok added.

Hello

Ok!  I added this plugin to the adaptation queue

Hello

I  added code.

Please create test rules for my user role  I want to check it

Ok please try now, I've added a b2b user role to your account.

Btw, I tested and it seems to work.

Hello

Ok!  Great

In  file - plugins\woocommerce-wholesale-prices\includes\class-wwp-wholesale-prices.php add  code - https://c2n.me/47wOBH1.png

if (class_exists('WOOCS') AND $wholesale_price) {
global $WOOCS;
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$wholesale_price = $wholesale_price / ($rate);
}
}

 

AND  add  code - https://c2n.me/47wOIHw.png

$price = $cart_item['data']->get_price();
if (class_exists('WOOCS')) {
global $WOOCS;
$currrent = $WOOCS->current_currency;
if ($currrent != $WOOCS->default_currency) {
$currencies = $WOOCS->get_currencies();
$rate = $currencies[$currrent]['rate'];
$price = $price / ($rate);
}
}

change  code - https://c2n.me/47wONWx.png