Filter the maximum number of decimal places shown. By default we do not show for whole amounts ().00 cents), but you could modify so it always shows 2 cents.
To be able to run multi-currency while still maintaining full-page caching, we use a URL parameter to keep track of
the user’s chosen currency. To disable URL-based currency switching, you can use this filter.
Copy
add_filter( 'surecart/currency/filter_url', '__return_false' );// Or disable only for specific pagesadd_filter( 'surecart/currency/filter_url', function( $filter, $permalink ) { // Don't add currency params to checkout pages if ( strpos( $permalink, 'checkout' ) !== false ) { return false; } return $filter;}, 10, 2 );