ADAPTION REQUEST: WooCommerce Memberships
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 Sticky on December 11, 2019, 19:35When a customer has a membership that has a discount in their membership (15% off all products if a member). The front end displays the discount to ALL visitors, (members or not). This is a big issue that arises.
What other information do you require?
When a customer has a membership that has a discount in their membership (15% off all products if a member). The front end displays the discount to ALL visitors, (members or not). This is a big issue that arises.
What other information do you require?
Quote from Pablo Borysenco on December 12, 2019, 12:38Hello
Please drop me wp-admin+FTP access - https://c2n.me/43SC6rb.png ->https://c2n.me/42BAoj4.png
I will add the plugin to the adaptation queue
Hello
Please drop me wp-admin+FTP access - https://c2n.me/43SC6rb.png ->https://c2n.me/42BAoj4.png
I will add the plugin to the adaptation queue
Quote from Sticky on December 17, 2019, 19:09Hello,
I have updated the private data for admin access. Are you able to keep me updated as to where you are at in the process and how long it might take for a 'fix'?
Thanks!
Hello,
I have updated the private data for admin access. Are you able to keep me updated as to where you are at in the process and how long it might take for a 'fix'?
Thanks!
Quote from Pablo Borysenco on December 18, 2019, 12:33Hello
Please add FTP access.
Hello
Please add FTP access.
Quote from Sticky on December 19, 2019, 23:07I have added the FTP
I have added the FTP
Quote from Pablo Borysenco on December 20, 2019, 11:24Hello
Ok! I added this plugin to the adaptation queue
Hello
Ok! I added this plugin to the adaptation queue
Quote from Sticky on December 20, 2019, 18:56Ok thank you.
Any word on timeline of when it will get looked at?
Ok thank you.
Any word on timeline of when it will get looked at?
Quote from Pablo Borysenco on December 23, 2019, 12:12Hello
I think in two weeks
Hello
I think in two weeks
Quote from Pablo Borysenco on January 9, 2020, 19:47Hello
Please activate WOOCS and do test.
Hello
Please activate WOOCS and do test.
Quote from Sticky on January 15, 2020, 00:22Hello,
I have tried this, and now it just turns all the prices to ZERO (0.00). I feel like we've gone worse on this now.
Hello,
I have tried this, and now it just turns all the prices to ZERO (0.00). I feel like we've gone worse on this now.
Quote from Pablo Borysenco on January 15, 2020, 12:04Hello
I checked it! Everything works correctly - https://c2n.me/45vCs4M
Hello
I checked it! Everything works correctly - https://c2n.me/45vCs4M
Quote from Sticky on January 20, 2020, 19:48Hello Pablo, sorry for my late response. It does not work correctly. This is a screenshot of the different effects.
Please review.
Hello Pablo, sorry for my late response. It does not work correctly. This is a screenshot of the different effects.
Please review.

![]()
Quote from Pablo Borysenco on January 21, 2020, 12:24Hello
Please drop me screenshots/video with the issue
Hello
Please drop me screenshots/video with the issue
Quote from Sticky on January 21, 2020, 19:43Hey Pablo,
You can see in the screenshot that is there. Does it not show for you?
Hey Pablo,
You can see in the screenshot that is there. Does it not show for you?
Quote from Pablo Borysenco on January 22, 2020, 12:00Hello
https://c2n.me/45CxFLf.png - Unfortunately I do not see your screenshot
Hello
https://c2n.me/45CxFLf.png - Unfortunately I do not see your screenshot
Quote from Sticky on January 22, 2020, 22:49Does this link work for you?
https://www.dropbox.com/s/lu4a3m5z5zcyezr/2DRRpeOQ.png?dl=0
Does this link work for you?
Quote from Pablo Borysenco on January 23, 2020, 12:22Hello
Yes! Ok, I got it! I will fix it
Hello
Yes! Ok, I got it! I will fix it
Quote from Pablo Borysenco on January 23, 2020, 18:19Hello
Please do test!
Hello
Please do test!
Quote from Sticky on January 24, 2020, 02:24So far so good, will keep an eye on it in case of anything else that arises. Thank you!
So far so good, will keep an eye on it in case of anything else that arises. Thank you!
Quote from Pablo Borysenco on January 24, 2020, 12:32Hello
Ok! Welcome;)
New code:
In file - "\wp-content\plugins\woocommerce-currency-switcher\classes\woocs_after_33.php"
add - https://c2n.me/45EfDZe.png
if(function_exists("wc_memberships") ){
if ( wc_memberships()->get_member_discounts_instance()->applying_discounts() ) {
if ( !doing_action( 'woocommerce_add_cart_item_data' ) ) {
$prices_array[$key][$product_id] = wc_memberships()->get_member_discounts_instance()->get_discounted_price( $prices_array[$key][$product_id], wc_get_product($product_id) );
}
}
}AND - https://c2n.me/45EfMB6.png
if(function_exists("wc_memberships") AND $product !== NULL ){
if ( wc_memberships()->get_member_discounts_instance()->applying_discounts() ) {
if ( doing_action( 'woocommerce_add_cart_item_data' ) ) {
$price = wc_memberships()->get_member_discounts_instance()->get_discounted_price( $price,$product );
}
}
}
Hello
Ok! Welcome;)
New code:
In file -"\wp-content\plugins\woocommerce-currency-switcher\classes\woocs_after_33.php"
add - https://c2n.me/45EfDZe.png
if(function_exists("wc_memberships") ){
if ( wc_memberships()->get_member_discounts_instance()->applying_discounts() ) {
if ( !doing_action( 'woocommerce_add_cart_item_data' ) ) {
$prices_array[$key][$product_id] = wc_memberships()->get_member_discounts_instance()->get_discounted_price( $prices_array[$key][$product_id], wc_get_product($product_id) );
}
}
}
AND - https://c2n.me/45EfMB6.png
if(function_exists("wc_memberships") AND $product !== NULL ){
if ( wc_memberships()->get_member_discounts_instance()->applying_discounts() ) {
if ( doing_action( 'woocommerce_add_cart_item_data' ) ) {
$price = wc_memberships()->get_member_discounts_instance()->get_discounted_price( $price,$product );
}
}
}