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

Plugin still doesn't work - all I want to do is add 2% on top of regular price

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 had many issues previously and realised that the plugin was out of date.. I then managed to fix the issue after updating. Now, however, I am unable to even add 2% onto a price. Seemingly random things happen when I try this - currently when I try to ADD 2% to a product that is £5.49, it then REDUCES the price to £5.09. Why? This is when I use the bulk edit function.

When I try to change the price of an individual product in the product list with the details above, it does nothing.

If I make one edit using the bulk editor, then want to make another one whilst on that page, it secretly removes the filter (it still shows the filter as applied and only shows the list of those products) and applies the change to ALL products.

If I change the wholesale price (a field that has been added using another plugin) with the same details as above, I have the same issue but with seemingly random numbers (e.g. a price going from £15.25 to £21.29). If I try to revert back from this, it does nothing. Thankfully I had taken a back up otherwise I would have had to manually change all of those prices again.

I am so disappointed that such a simple task cannot be done. Please help otherwise I will be forced to switch to another plugin as this one has let me down too many times now.

Thanks,

Michael

Hello Michael

What version number are you using?

Do you use a  cache  plugin?

Hi Pablo,

Thanks for your reply. I am using version 2.1.1 and don't have a cache plugin - this is handled by my host.

Thanks,

Michael

Hello Michael

Please paste your license key here - https://share.pluginus.net/image/i20210618130558.png -> https://share.pluginus.net/image/i20210618130614.png

Disable  cache  on  your host  and  do a  test

Hi Pablo,

I tried disabling the cache but it has made no difference unfortunately.

Thanks,

Michael

Hello Michael

Can you drop  me  wp-admin access - https://pluginus.net/support/ - I will check  it

Hi Pablo,

I have created that for you now.

Thanks,

Michael

I did  a  test  - https://c2n.me/4f7930p - everything works correctly. What am I doing wrong

Hi Pablo,

Thanks for checking that so quickly. Can you try again adding 2%? 10% seems to work for me too.

Thanks,

Michael

hello Michael

The new test  - https://c2n.me/4f7owXo

5.49*1.02 = 5.5998

Hi Pablo,

I've just noticed the issue seems to be if I try to round to 5 or 9. Could that be what is causing the issue? I'd like it to go to the nearest £*.*9 but it seems to only go to £*.09.

Could you possibly also confirm how to apply the 2% to every product? When I tried it before (and got the wrong amount) it applied to either variations or the parent product.

Thanks again for your help.

Michael

Hello

please watch this  video - https://bulk-editor.com/video#video_2502

to do custom rounding - https://bulk-editor.com/woocommerce-price-rounding

Hi Pablo,

Apologies if I'm missing something here but I watched your video and it only seems to have proven something is wrong.

For example, £5.40 + 2% = £5.508. If I select rounding to 5 or 9, it should go to £5.45/£5.55 or £5.49/£5.59 however it goes to £5.04 or £5.09. It makes no difference what percentage I add on, it goes to £*.05 every time.

Thanks,

Michael

hello Michael

If I select rounding to 5 or 9, it should go to £5.45/£5.55 or £5.49/£5.59 - Why?  is rounding up to 09 and 05

try  to add  in functions.php

add_filter('woobe_number_field_manipulation', function($value, $field_key, $product_id) {

return round($value*10 + 0.1)/10 - 0.01;

}, 10, 3);