Hi,
Who do i get a list of values WITHOUT the colon (,)?
From
<?php the_field( "ingredients" );  ?>
I get: “Milk, Butter, Peanuts”
I want: “Milk Butter Peanuts”
Thank you
				
		
	 
	
	
		
	
		
	
		
		
	
	
		
		
			
		
	
	
		
		
		Solved!
Just removed the “,” in
<?php echo implode(' ', get_field('ingredients')); ?>