skip to Main Content

Snippet: 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 WPCode)
Back To Top