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 pleaseIf 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.
Quote from Niklas on April 28, 2020, 14:18Hello
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
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!
Quote from Pablo Borysenco on April 29, 2020, 11:17Hello
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
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
Quote from Niklas on April 29, 2020, 11:42Ok, info provided.
Ok, info provided.
Quote from Pablo Borysenco on April 30, 2020, 12:07Hello
Ok
I added this plugin to the adaptation queue
Hello
Ok
I added this plugin to the adaptation queue
Quote from Niklas on May 5, 2020, 09:33Hello, 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, 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
Quote from Pablo Borysenco on May 5, 2020, 11:16Hello
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
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
Quote from Pablo Borysenco on May 7, 2020, 17:23Hello
Please add .htaccess pswd + login
Hello
Please add .htaccess pswd + login
Quote from Pablo Borysenco on May 7, 2020, 18:00Hello
You use paid version of the WOOCS - Paste your license key here - https://c2n.me/43SC6rb.png -> https://c2n.me/42HBIt7.png
Hello
You use paid version of the WOOCS - Paste your license key here - https://c2n.me/43SC6rb.png -> https://c2n.me/42HBIt7.png
Quote from Niklas on May 7, 2020, 18:19Are we? Thought it was the free version. Where can I find the key?
Are we? Thought it was the free version. Where can I find the key?
Quote from Pablo Borysenco on May 8, 2020, 11:32Hello
To get license key - https://codecanyon.net/downloads - https://c2n.me/46i7Aam.png
Hello
To get license key - https://codecanyon.net/downloads - https://c2n.me/46i7Aam.png
Quote from Niklas on May 11, 2020, 13:35Ok, 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?
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?
Quote from Pablo Borysenco on May 12, 2020, 12:06Hello
we do not support products without a license
If not, can we buy a new version? - Yes
Hello
we do not support products without a license
If not, can we buy a new version? - Yes
Quote from Pablo Borysenco on May 13, 2020, 11:14Hello
Ok! I added this plugin to the adaptation queue
Hello
Ok! I added this plugin to the adaptation queue
Quote from Pablo Borysenco on May 14, 2020, 17:19Hello
I added code.
Please create test rules for my user role I want to check it
Hello
I added code.
Please create test rules for my user role I want to check it
Quote from Niklas on May 14, 2020, 19:35Ok please try now, I've added a b2b user role to your account.
Btw, I tested and it seems to work.
Ok please try now, I've added a b2b user role to your account.
Btw, I tested and it seems to work.
Quote from Pablo Borysenco on May 15, 2020, 11:29Hello
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
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
