• Resolved alexanderdean

    (@alexanderdean)


    My client’s website accepts several currencies all of which they would like rounded to the nearest whole number (“dollar”) in terms of product pricing. The only exception is BitCoin because it rounds every product to 1 Bitcoin.

    Is there a way to turn on the rounding for all products except Bitcoin (i.e. a rounding setting per currency)?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hello,
    I’m creating a filter so you’ll be able to override plugin’s settings per currency.
    I’ll let you know when it’s ready ??

    Thread Starter alexanderdean

    (@alexanderdean)

    Excellent! Thank you, Pablo!

    Hi again @alexanderdean,

    I just updated the plugin to version 2.9.3.
    Please try this code on your functions.php and tell me the results:

    add_filter( 'alg_wc_currency_switcher_correction', function ( $correction, $currency ) {
    	if ( $currency == 'BTC' ) {
    		$correction['rounding'] = 'no_round';
    		$correction['pretty_price'] = 'no';
    	}
    
    	return $correction;
    }, 10, 2 );
    • This reply was modified 6 years, 2 months ago by Pablo Pacheco.
    Thread Starter alexanderdean

    (@alexanderdean)

    Hi Pablo,

    I upgraded to 2.9.3 and added your snippet to my code and everything is working perfectly… Thank you so much! I’m glad I bought the Pro version!

    One more question: I was on version 2.8.6 prior to this upgrade… I never received any update notices in my wp-admin… The only way that I could update the product was to find the original download link in my purchase confirmation email and redownload, upload, and unzip the files… Should the regular update method in wp-admin be working for the Pro version?

    Thanks again,
    Alec

    Great @alexanderdean! Thanks for letting me know.

    You can use our helper plugin:
    https://www.ads-software.com/plugins/wpcodefactory-helper/advanced/
    I will notify you about updates.

    Would you mind writing a tiny review for the plugin? It’s really important for us

    Thread Starter alexanderdean

    (@alexanderdean)

    Hi Pablo…

    Great! Thanks for everything and your 5 star review has been submitted! ??

    Thanks! I just saw it ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Rounding Per Currency’ is closed to new replies.