skip to Main Content

Alter The Milestone VC Module Decimal Format

add_filter( 'vcex_milestone_settings', function( $settings ) {
	$settings['separator'] = ',';
	$settings['decimal'] = '.';
	return $settings;
} );
All PHP snippets should be added via child theme's functions.php file or via a plugin (we recommend Code Snippets)
Back To Top